2024-09-17T10:56:29.337 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T10:56:29.355 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T10:56:29.446 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723 branch: main 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: '7907723' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: main 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: 7498493279982dfe87f00616198a5967475f6169 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 7498493279982dfe87f00616198a5967475f6169 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: 2b698643d05f73e79c2d2888228947a84a4ac0bd owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 3649 sha1: 7498493279982dfe87f00616198a5967475f6169 sleep_before_teardown: 0 subset: 42/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 2b698643d05f73e79c2d2888228947a84a4ac0bd targets: smithi042.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCkKxaXPW5+4LmDxuyv2igrdTOi+rCPgR6AgFJSbnSY2cqt6QA31QCIeFrUsr5/LQBIme16AE01icjG1N//6J48= smithi181.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBP+2sGpIAzQYPMj8bewOqjegtwRa06SY2CiGwcxTO4e3GblPBxpKocXq38focmSTH3v1hhi0Gw8RieihLNcMOsk= 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_20:08:15 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T10:56:29.446 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa; will attempt to use it 2024-09-17T10:56:29.447 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa/tasks 2024-09-17T10:56:29.447 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T10:56:29.449 INFO:teuthology.task.internal:Checking packages... 2024-09-17T10:56:29.470 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '7498493279982dfe87f00616198a5967475f6169' 2024-09-17T10:56:29.470 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T10:56:29.471 INFO:teuthology.packaging:ref: None 2024-09-17T10:56:29.471 INFO:teuthology.packaging:tag: None 2024-09-17T10:56:29.471 INFO:teuthology.packaging:branch: main 2024-09-17T10:56:29.471 INFO:teuthology.packaging:sha1: 7498493279982dfe87f00616198a5967475f6169 2024-09-17T10:56:29.471 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-09-17T10:56:29.685 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4959.g2b698643 2024-09-17T10:56:29.687 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T10:56:29.694 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T10:56:29.694 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T10:56:29.715 INFO:teuthology.task.internal:Saving configuration 2024-09-17T10:56:29.728 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T10:56:29.734 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T10:56:29.760 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi042.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723', '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 10:51:43.418985', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCkKxaXPW5+4LmDxuyv2igrdTOi+rCPgR6AgFJSbnSY2cqt6QA31QCIeFrUsr5/LQBIme16AE01icjG1N//6J48='} 2024-09-17T10:56:29.783 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi181.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723', '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 10:51:43.417238', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBP+2sGpIAzQYPMj8bewOqjegtwRa06SY2CiGwcxTO4e3GblPBxpKocXq38focmSTH3v1hhi0Gw8RieihLNcMOsk='} 2024-09-17T10:56:29.783 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T10:56:29.790 INFO:teuthology.task.internal:roles: ubuntu@smithi042.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-17T10:56:29.790 INFO:teuthology.task.internal:roles: ubuntu@smithi181.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-17T10:56:29.790 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T10:56:29.843 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f4a62767ac0>, signals=[15]) 2024-09-17T10:56:29.843 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T10:56:29.849 INFO:teuthology.task.internal:Opening connections... 2024-09-17T10:56:29.849 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T10:56:29.850 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:56:29.929 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi181.front.sepia.ceph.com 2024-09-17T10:56:29.930 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:56:30.006 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T10:56:30.013 DEBUG:teuthology.orchestra.run.smithi042:> uname -m 2024-09-17T10:56:30.031 INFO:teuthology.orchestra.run.smithi042.stdout:x86_64 2024-09-17T10:56:30.031 DEBUG:teuthology.orchestra.run.smithi042:> cat /etc/os-release 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:NAME="CentOS Stream" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:VERSION="9" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:ID="centos" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:ID_LIKE="rhel fedora" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:VERSION_ID="9" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:PLATFORM_ID="platform:el9" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:ANSI_COLOR="0;31" 2024-09-17T10:56:30.089 INFO:teuthology.orchestra.run.smithi042.stdout:LOGO="fedora-logo-icon" 2024-09-17T10:56:30.090 INFO:teuthology.orchestra.run.smithi042.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T10:56:30.090 INFO:teuthology.orchestra.run.smithi042.stdout:HOME_URL="https://centos.org/" 2024-09-17T10:56:30.090 INFO:teuthology.orchestra.run.smithi042.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T10:56:30.090 INFO:teuthology.orchestra.run.smithi042.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T10:56:30.090 INFO:teuthology.orchestra.run.smithi042.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T10:56:30.090 INFO:teuthology.lock.ops:Updating smithi042.front.sepia.ceph.com on lock server 2024-09-17T10:56:30.112 DEBUG:teuthology.orchestra.run.smithi181:> uname -m 2024-09-17T10:56:30.130 INFO:teuthology.orchestra.run.smithi181.stdout:x86_64 2024-09-17T10:56:30.130 DEBUG:teuthology.orchestra.run.smithi181:> cat /etc/os-release 2024-09-17T10:56:30.186 INFO:teuthology.orchestra.run.smithi181.stdout:NAME="CentOS Stream" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:VERSION="9" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:ID="centos" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:ID_LIKE="rhel fedora" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:VERSION_ID="9" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:PLATFORM_ID="platform:el9" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:ANSI_COLOR="0;31" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:LOGO="fedora-logo-icon" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:HOME_URL="https://centos.org/" 2024-09-17T10:56:30.187 INFO:teuthology.orchestra.run.smithi181.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T10:56:30.188 INFO:teuthology.orchestra.run.smithi181.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T10:56:30.188 INFO:teuthology.orchestra.run.smithi181.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T10:56:30.188 INFO:teuthology.lock.ops:Updating smithi181.front.sepia.ceph.com on lock server 2024-09-17T10:56:30.212 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T10:56:30.220 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T10:56:30.228 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T10:56:30.229 DEBUG:teuthology.orchestra.run.smithi042:> test '!' -e /home/ubuntu/cephtest 2024-09-17T10:56:30.231 DEBUG:teuthology.orchestra.run.smithi181:> test '!' -e /home/ubuntu/cephtest 2024-09-17T10:56:30.247 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T10:56:30.252 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T10:56:30.252 DEBUG:teuthology.orchestra.run.smithi042:> test -z $(ls -A /var/lib/ceph) 2024-09-17T10:56:30.289 DEBUG:teuthology.orchestra.run.smithi181:> test -z $(ls -A /var/lib/ceph) 2024-09-17T10:56:30.317 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T10:56:30.374 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T10:56:30.387 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T10:56:30.388 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T10:56:30.388 DEBUG:teuthology.orchestra.run.smithi042:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T10:56:30.388 DEBUG:teuthology.orchestra.run.smithi181:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T10:56:30.404 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:56:30.404 DEBUG:teuthology.orchestra.run.smithi181:> uname -r 2024-09-17T10:56:30.405 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:56:30.405 DEBUG:teuthology.orchestra.run.smithi042:> uname -r 2024-09-17T10:56:30.461 INFO:teuthology.orchestra.run.smithi181.stdout:5.14.0-503.el9.x86_64 2024-09-17T10:56:30.461 INFO:teuthology.task.kernel:Running kernel on smithi181: 5.14.0-503.el9.x86_64 2024-09-17T10:56:30.461 DEBUG:teuthology.orchestra.run.smithi181:> sudo yum install -y kernel 2024-09-17T10:56:30.463 INFO:teuthology.orchestra.run.smithi042.stdout:5.14.0-503.el9.x86_64 2024-09-17T10:56:30.463 INFO:teuthology.task.kernel:Running kernel on smithi042: 5.14.0-503.el9.x86_64 2024-09-17T10:56:30.463 DEBUG:teuthology.orchestra.run.smithi042:> sudo yum install -y kernel 2024-09-17T10:56:33.807 INFO:teuthology.orchestra.run.smithi181.stdout:CentOS Stream 9 - BaseOS 5.4 MB/s | 8.3 MB 00:01 2024-09-17T10:56:33.961 INFO:teuthology.orchestra.run.smithi042.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.3 MB 00:01 2024-09-17T10:56:37.070 INFO:teuthology.orchestra.run.smithi042.stdout:CentOS Stream 9 - AppStream 10 MB/s | 20 MB 00:01 2024-09-17T10:56:38.707 INFO:teuthology.orchestra.run.smithi181.stdout:CentOS Stream 9 - AppStream 5.3 MB/s | 20 MB 00:03 2024-09-17T10:56:41.371 INFO:teuthology.orchestra.run.smithi042.stdout:CentOS Stream 9 - CRB 17 MB/s | 6.5 MB 00:00 2024-09-17T10:56:43.655 INFO:teuthology.orchestra.run.smithi042.stdout:CentOS Stream 9 - Extras packages 18 kB/s | 19 kB 00:01 2024-09-17T10:56:44.141 INFO:teuthology.orchestra.run.smithi181.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-17T10:56:44.551 INFO:teuthology.orchestra.run.smithi042.stdout:Extra Packages for Enterprise Linux 30 MB/s | 23 MB 00:00 2024-09-17T10:56:45.608 INFO:teuthology.orchestra.run.smithi181.stdout:CentOS Stream 9 - Extras packages 74 kB/s | 19 kB 00:00 2024-09-17T10:56:46.529 INFO:teuthology.orchestra.run.smithi181.stdout:Extra Packages for Enterprise Linux 28 MB/s | 23 MB 00:00 2024-09-17T10:56:50.091 INFO:teuthology.orchestra.run.smithi042.stdout:lab-extras 35 kB/s | 1.7 kB 00:00 2024-09-17T10:56:52.019 INFO:teuthology.orchestra.run.smithi181.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-09-17T10:56:52.055 INFO:teuthology.orchestra.run.smithi042.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T10:56:52.055 INFO:teuthology.orchestra.run.smithi042.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T10:56:52.151 INFO:teuthology.orchestra.run.smithi042.stdout:Dependencies resolved. 2024-09-17T10:56:52.161 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T10:56:52.161 INFO:teuthology.orchestra.run.smithi042.stdout: Package Architecture Version Repository Size 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:Installing: 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:Installing dependencies: 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction Summary 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T10:56:52.162 INFO:teuthology.orchestra.run.smithi042.stdout:Install 4 Packages 2024-09-17T10:56:52.163 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:56:52.163 INFO:teuthology.orchestra.run.smithi042.stdout:Total download size: 79 M 2024-09-17T10:56:52.163 INFO:teuthology.orchestra.run.smithi042.stdout:Installed size: 126 M 2024-09-17T10:56:52.163 INFO:teuthology.orchestra.run.smithi042.stdout:Downloading Packages: 2024-09-17T10:56:52.817 INFO:teuthology.orchestra.run.smithi042.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 65 kB/s | 36 kB 00:00 2024-09-17T10:56:53.950 INFO:teuthology.orchestra.run.smithi181.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T10:56:53.950 INFO:teuthology.orchestra.run.smithi181.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T10:56:53.992 INFO:teuthology.orchestra.run.smithi042.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 9.1 MB/s | 16 MB 00:01 2024-09-17T10:56:54.037 INFO:teuthology.orchestra.run.smithi181.stdout:Dependencies resolved. 2024-09-17T10:56:54.044 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T10:56:54.044 INFO:teuthology.orchestra.run.smithi181.stdout: Package Architecture Version Repository Size 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:Installing: 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:Installing dependencies: 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction Summary 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout:Install 4 Packages 2024-09-17T10:56:54.045 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:56:54.046 INFO:teuthology.orchestra.run.smithi181.stdout:Total download size: 79 M 2024-09-17T10:56:54.046 INFO:teuthology.orchestra.run.smithi181.stdout:Installed size: 126 M 2024-09-17T10:56:54.046 INFO:teuthology.orchestra.run.smithi181.stdout:Downloading Packages: 2024-09-17T10:56:54.178 INFO:teuthology.orchestra.run.smithi181.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 319 kB/s | 36 kB 00:00 2024-09-17T10:56:54.767 INFO:teuthology.orchestra.run.smithi042.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 14 MB/s | 35 MB 00:02 2024-09-17T10:56:55.095 INFO:teuthology.orchestra.run.smithi181.stdout:(2/4): kernel-modules-core-5.14.0-508.el9.x86_6 31 MB/s | 29 MB 00:00 2024-09-17T10:56:55.387 INFO:teuthology.orchestra.run.smithi181.stdout:(3/4): kernel-core-5.14.0-508.el9.x86_64.rpm 12 MB/s | 16 MB 00:01 2024-09-17T10:56:56.209 INFO:teuthology.orchestra.run.smithi042.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 8.4 MB/s | 29 MB 00:03 2024-09-17T10:56:56.209 INFO:teuthology.orchestra.run.smithi042.stdout:-------------------------------------------------------------------------------- 2024-09-17T10:56:56.210 INFO:teuthology.orchestra.run.smithi042.stdout:Total 19 MB/s | 79 MB 00:04 2024-09-17T10:56:56.637 INFO:teuthology.orchestra.run.smithi181.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 13 MB/s | 35 MB 00:02 2024-09-17T10:56:56.638 INFO:teuthology.orchestra.run.smithi181.stdout:-------------------------------------------------------------------------------- 2024-09-17T10:56:56.638 INFO:teuthology.orchestra.run.smithi181.stdout:Total 30 MB/s | 79 MB 00:02 2024-09-17T10:56:56.936 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction check 2024-09-17T10:56:57.317 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction check 2024-09-17T10:56:57.333 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction check succeeded. 2024-09-17T10:56:57.333 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction test 2024-09-17T10:56:57.661 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction check succeeded. 2024-09-17T10:56:57.661 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction test 2024-09-17T10:56:58.358 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction test succeeded. 2024-09-17T10:56:58.358 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction 2024-09-17T10:56:58.623 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction test succeeded. 2024-09-17T10:56:58.623 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction 2024-09-17T10:57:00.915 INFO:teuthology.orchestra.run.smithi042.stdout: Preparing : 1/1 2024-09-17T10:57:01.056 INFO:teuthology.orchestra.run.smithi181.stdout: Preparing : 1/1 2024-09-17T10:57:01.587 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:57:01.669 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:01.691 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:57:01.795 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:04.421 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:04.536 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:04.549 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:04.666 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:09.470 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:09.509 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:09.679 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:09.716 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:14.325 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:14.857 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:52.781 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:52.820 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:53.186 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:53.186 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:57:53.186 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:53.186 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:53.753 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:53.794 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:54.073 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:54.073 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:57:54.073 INFO:teuthology.orchestra.run.smithi181.stdout:Installed: 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:57:54.074 INFO:teuthology.orchestra.run.smithi181.stdout:Complete! 2024-09-17T10:57:54.150 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:54.150 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:57:54.150 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:57:54.150 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:57:54.427 DEBUG:teuthology.orchestra.run.smithi181:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:57:54.514 INFO:teuthology.orchestra.run.smithi181.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.515 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:57:54.515 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-17T10:57:54.515 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T10:57:54.515 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T10:57:54.515 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T10:57:54.515 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi181.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T10:57:54.515 DEBUG:teuthology.orchestra.run.smithi181:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:57:54.574 INFO:teuthology.orchestra.run.smithi181.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.574 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:57:54.574 DEBUG:teuthology.orchestra.run.smithi181:> sudo rpm -qi grub2-tools 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Name : grub2-tools 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Epoch : 1 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Version : 2.06 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Release : 82.el9 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Architecture: x86_64 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Group : Unspecified 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:Size : 8274670 2024-09-17T10:57:54.612 INFO:teuthology.orchestra.run.smithi181.stdout:License : GPLv3+ 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Packager : builder@centos.org 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Vendor : CentOS 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Summary : Support tools for GRUB. 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:Description : 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T10:57:54.613 INFO:teuthology.orchestra.run.smithi181.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T10:57:54.614 INFO:teuthology.orchestra.run.smithi181.stdout:hardware devices. 2024-09-17T10:57:54.614 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T10:57:54.614 INFO:teuthology.orchestra.run.smithi181.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T10:57:54.614 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T10:57:54.615 INFO:teuthology.task.kernel:Updating grub on smithi181 to boot 5.14.0-508.el9.x86_64 2024-09-17T10:57:54.615 DEBUG:teuthology.orchestra.run.smithi181:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T10:57:54.983 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:57:54.983 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:57:54.983 INFO:teuthology.orchestra.run.smithi042.stdout:Installed: 2024-09-17T10:57:54.983 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.983 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.984 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.984 INFO:teuthology.orchestra.run.smithi042.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T10:57:54.984 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:57:54.984 INFO:teuthology.orchestra.run.smithi042.stdout:Complete! 2024-09-17T10:57:55.259 INFO:teuthology.orchestra.run.smithi181.stderr:Generating grub configuration file ... 2024-09-17T10:57:55.293 DEBUG:teuthology.orchestra.run.smithi042:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:57:55.378 INFO:teuthology.orchestra.run.smithi042.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:55.379 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:57:55.379 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-17T10:57:55.379 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T10:57:55.379 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T10:57:55.379 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T10:57:55.379 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi042.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T10:57:55.379 DEBUG:teuthology.orchestra.run.smithi042:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:57:55.438 INFO:teuthology.orchestra.run.smithi042.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:57:55.438 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:57:55.438 DEBUG:teuthology.orchestra.run.smithi042:> sudo rpm -qi grub2-tools 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Name : grub2-tools 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Epoch : 1 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Version : 2.06 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Release : 82.el9 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Architecture: x86_64 2024-09-17T10:57:55.477 INFO:teuthology.orchestra.run.smithi042.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Group : Unspecified 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Size : 8274670 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:License : GPLv3+ 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Packager : builder@centos.org 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Vendor : CentOS 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Summary : Support tools for GRUB. 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:Description : 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:57:55.478 INFO:teuthology.orchestra.run.smithi042.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T10:57:55.479 INFO:teuthology.orchestra.run.smithi042.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T10:57:55.479 INFO:teuthology.orchestra.run.smithi042.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T10:57:55.479 INFO:teuthology.orchestra.run.smithi042.stdout:hardware devices. 2024-09-17T10:57:55.479 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T10:57:55.479 INFO:teuthology.orchestra.run.smithi042.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T10:57:55.480 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T10:57:55.480 INFO:teuthology.task.kernel:Updating grub on smithi042 to boot 5.14.0-508.el9.x86_64 2024-09-17T10:57:55.480 DEBUG:teuthology.orchestra.run.smithi042:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T10:57:56.141 INFO:teuthology.orchestra.run.smithi042.stderr:Generating grub configuration file ... 2024-09-17T10:57:56.599 INFO:teuthology.orchestra.run.smithi181.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T10:57:56.626 INFO:teuthology.orchestra.run.smithi181.stderr:done 2024-09-17T10:57:56.628 DEBUG:teuthology.orchestra.run.smithi181:> mktemp 2024-09-17T10:57:56.644 INFO:teuthology.orchestra.run.smithi181.stdout:/tmp/tmp.m8kxSqZvBa 2024-09-17T10:57:56.644 DEBUG:teuthology.orchestra.run.smithi181:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.m8kxSqZvBa 2024-09-17T10:57:56.710 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 0666 /tmp/tmp.m8kxSqZvBa 2024-09-17T10:57:56.847 DEBUG:teuthology.orchestra.remote:smithi181:/tmp/tmp.m8kxSqZvBa is 6KB 2024-09-17T10:57:56.895 DEBUG:teuthology.orchestra.run.smithi181:> rm -fr /tmp/tmp.m8kxSqZvBa 2024-09-17T10:57:56.910 DEBUG:teuthology.orchestra.run.smithi181:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T10:57:56.972 INFO:teuthology.orchestra.run.smithi181.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T10:57:56.972 INFO:teuthology.orchestra.run.smithi181.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T10:57:56.972 INFO:teuthology.orchestra.run.smithi181.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T10:57:56.973 INFO:teuthology.orchestra.run.smithi181.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T10:57:56.974 DEBUG:teuthology.orchestra.run.smithi181:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T10:57:57.127 DEBUG:teuthology.orchestra.run.smithi181:> sudo shutdown -r now 2024-09-17T10:57:57.463 INFO:teuthology.orchestra.run.smithi042.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T10:57:57.493 INFO:teuthology.orchestra.run.smithi042.stderr:done 2024-09-17T10:57:57.499 DEBUG:teuthology.orchestra.run.smithi042:> mktemp 2024-09-17T10:57:57.514 INFO:teuthology.orchestra.run.smithi042.stdout:/tmp/tmp.gHcKOpkniw 2024-09-17T10:57:57.514 DEBUG:teuthology.orchestra.run.smithi042:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.gHcKOpkniw 2024-09-17T10:57:57.590 DEBUG:teuthology.orchestra.run.smithi042:> sudo chmod 0666 /tmp/tmp.gHcKOpkniw 2024-09-17T10:57:57.735 DEBUG:teuthology.orchestra.remote:smithi042:/tmp/tmp.gHcKOpkniw is 6KB 2024-09-17T10:57:57.785 DEBUG:teuthology.orchestra.run.smithi042:> rm -fr /tmp/tmp.gHcKOpkniw 2024-09-17T10:57:57.799 DEBUG:teuthology.orchestra.run.smithi042:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T10:57:57.861 INFO:teuthology.orchestra.run.smithi042.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T10:57:57.862 INFO:teuthology.orchestra.run.smithi042.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T10:57:57.862 INFO:teuthology.orchestra.run.smithi042.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T10:57:57.862 INFO:teuthology.orchestra.run.smithi042.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T10:57:57.863 DEBUG:teuthology.orchestra.run.smithi042:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T10:57:58.018 DEBUG:teuthology.orchestra.run.smithi042:> sudo shutdown -r now 2024-09-17T10:58:27.157 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T10:58:27.158 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T10:58:27.159 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:58:28.022 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T10:58:28.023 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T10:58:28.023 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:58:45.693 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.181 2024-09-17T10:58:46.461 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.42 2024-09-17T10:58:54.701 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T10:58:54.702 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:58:55.462 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T10:58:55.463 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:58:57.757 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.181 2024-09-17T10:59:09.769 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T10:59:09.770 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:59:13.853 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.42 2024-09-17T10:59:25.865 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T10:59:25.865 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:59:28.925 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.42 2024-09-17T10:59:41.606 DEBUG:teuthology.orchestra.run.smithi181:> true 2024-09-17T10:59:41.939 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T10:59:41.939 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T10:59:41.940 DEBUG:teuthology.orchestra.run.smithi181:> uname -r 2024-09-17T10:59:41.954 INFO:teuthology.orchestra.run.smithi181.stdout:5.14.0-508.el9.x86_64 2024-09-17T10:59:41.954 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-17T10:59:41.954 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T10:59:41.955 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T10:59:42.955 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T10:59:42.956 DEBUG:teuthology.orchestra.run.smithi181:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T10:59:43.076 INFO:teuthology.orchestra.run.smithi181.stdout:ttyS1 2024-09-17T10:59:43.098 DEBUG:teuthology.parallel:result is None 2024-09-17T10:59:43.926 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T10:59:43.927 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:59:44.202 DEBUG:teuthology.orchestra.run.smithi042:> true 2024-09-17T10:59:44.567 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T10:59:44.568 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T10:59:44.568 DEBUG:teuthology.orchestra.run.smithi042:> uname -r 2024-09-17T10:59:44.585 INFO:teuthology.orchestra.run.smithi042.stdout:5.14.0-508.el9.x86_64 2024-09-17T10:59:44.586 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-17T10:59:44.586 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T10:59:44.586 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T10:59:45.587 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T10:59:45.587 DEBUG:teuthology.orchestra.run.smithi042:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T10:59:45.658 INFO:teuthology.orchestra.run.smithi042.stdout:ttyS1 2024-09-17T10:59:45.674 DEBUG:teuthology.parallel:result is None 2024-09-17T10:59:45.675 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T10:59:45.682 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T10:59:45.682 DEBUG:teuthology.orchestra.run.smithi042:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T10:59:45.685 DEBUG:teuthology.orchestra.run.smithi181:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T10:59:45.704 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T10:59:45.712 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T10:59:45.718 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T10:59:45.719 DEBUG:teuthology.orchestra.run.smithi042:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T10:59:45.744 DEBUG:teuthology.orchestra.run.smithi181:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T10:59:45.782 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T10:59:45.791 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T10:59:45.791 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T10:59:45.821 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T10:59:45.854 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:59:45.856 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:59:45.865 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:59:45.867 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:59:45.870 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T10:59:45.879 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T10:59:45.879 DEBUG:teuthology.orchestra.run.smithi042:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T10:59:45.910 DEBUG:teuthology.orchestra.run.smithi181:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T10:59:45.938 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T10:59:45.946 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T10:59:45.946 DEBUG:teuthology.orchestra.run.smithi042:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T10:59:45.980 DEBUG:teuthology.orchestra.run.smithi181:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T10:59:45.996 DEBUG:teuthology.orchestra.run.smithi042:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:59:46.081 DEBUG:teuthology.orchestra.run.smithi042:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:59:46.133 DEBUG:teuthology.orchestra.run.smithi042:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:59:46.221 DEBUG:teuthology.orchestra.run.smithi042:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:59:46.261 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T10:59:46.261 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T10:59:46.328 DEBUG:teuthology.orchestra.run.smithi181:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:59:46.374 DEBUG:teuthology.orchestra.run.smithi181:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:59:46.427 DEBUG:teuthology.orchestra.run.smithi181:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:59:46.510 DEBUG:teuthology.orchestra.run.smithi181:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:59:46.555 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T10:59:46.555 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T10:59:46.623 DEBUG:teuthology.orchestra.run.smithi042:> sudo service rsyslog restart 2024-09-17T10:59:46.626 DEBUG:teuthology.orchestra.run.smithi181:> sudo service rsyslog restart 2024-09-17T10:59:46.677 INFO:teuthology.orchestra.run.smithi042.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T10:59:46.709 INFO:teuthology.orchestra.run.smithi181.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T10:59:47.222 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T10:59:47.231 INFO:teuthology.task.internal:Starting timer... 2024-09-17T10:59:47.231 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T10:59:47.243 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T10:59:47.251 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-17T10:59:47.252 DEBUG:teuthology.orchestra.run.smithi042:> sudo service auditd rotate 2024-09-17T10:59:47.305 INFO:teuthology.orchestra.run.smithi042.stdout:Rotating logs: 2024-09-17T10:59:47.307 DEBUG:teuthology.orchestra.run.smithi181:> sudo service auditd rotate 2024-09-17T10:59:47.367 INFO:teuthology.orchestra.run.smithi181.stdout:Rotating logs: 2024-09-17T10:59:47.368 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T10:59:47.369 DEBUG:teuthology.orchestra.run.smithi042:> /usr/sbin/getenforce 2024-09-17T10:59:47.392 INFO:teuthology.orchestra.run.smithi042.stdout:Permissive 2024-09-17T10:59:47.393 DEBUG:teuthology.orchestra.run.smithi181:> /usr/sbin/getenforce 2024-09-17T10:59:47.437 INFO:teuthology.orchestra.run.smithi181.stdout:Permissive 2024-09-17T10:59:47.437 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi042.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi181.front.sepia.ceph.com': 'permissive'} 2024-09-17T10:59:47.438 DEBUG:teuthology.orchestra.run.smithi042:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-17T10:59:47.467 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:59:47.467 DEBUG:teuthology.orchestra.run.smithi181:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-17T10:59:47.495 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:59:47.496 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T10:59:47.496 DEBUG:teuthology.orchestra.run.smithi042:> sudo /usr/sbin/setenforce permissive 2024-09-17T10:59:47.540 DEBUG:teuthology.orchestra.run.smithi181:> sudo /usr/sbin/setenforce permissive 2024-09-17T10:59:47.578 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T10:59:47.590 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T10:59:47.605 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-17T10:59:47.606 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi042.front.sepia.ceph.com,smithi181.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T11:03:33.745 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi042.front.sepia.ceph.com'), Remote(name='ubuntu@smithi181.front.sepia.ceph.com')] 2024-09-17T11:03:33.747 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T11:03:33.748 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T11:03:33.829 DEBUG:teuthology.orchestra.run.smithi042:> true 2024-09-17T11:03:33.910 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-09-17T11:03:33.911 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T11:03:33.911 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi181.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T11:03:33.987 DEBUG:teuthology.orchestra.run.smithi181:> true 2024-09-17T11:03:34.068 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi181.front.sepia.ceph.com' 2024-09-17T11:03:34.069 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T11:03:34.079 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T11:03:34.080 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T11:03:34.080 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:34.083 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T11:03:34.083 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:34.113 INFO:teuthology.orchestra.run.smithi042.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T11:03:34.128 INFO:teuthology.orchestra.run.smithi042.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T11:03:34.138 INFO:teuthology.orchestra.run.smithi181.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T11:03:34.152 INFO:teuthology.orchestra.run.smithi181.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T11:03:34.154 INFO:teuthology.orchestra.run.smithi042.stderr:sudo: ntpd: command not found 2024-09-17T11:03:34.166 INFO:teuthology.orchestra.run.smithi042.stdout:506 Cannot talk to daemon 2024-09-17T11:03:34.177 INFO:teuthology.orchestra.run.smithi181.stderr:sudo: ntpd: command not found 2024-09-17T11:03:34.181 INFO:teuthology.orchestra.run.smithi042.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T11:03:34.188 INFO:teuthology.orchestra.run.smithi181.stdout:506 Cannot talk to daemon 2024-09-17T11:03:34.197 INFO:teuthology.orchestra.run.smithi042.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T11:03:34.202 INFO:teuthology.orchestra.run.smithi181.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T11:03:34.216 INFO:teuthology.orchestra.run.smithi181.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T11:03:34.259 INFO:teuthology.orchestra.run.smithi042.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:03:34.262 INFO:teuthology.orchestra.run.smithi042.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:03:34.262 INFO:teuthology.orchestra.run.smithi042.stdout:=============================================================================== 2024-09-17T11:03:34.263 INFO:teuthology.orchestra.run.smithi042.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.263 INFO:teuthology.orchestra.run.smithi042.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.263 INFO:teuthology.orchestra.run.smithi042.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.263 INFO:teuthology.orchestra.run.smithi042.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.273 INFO:teuthology.orchestra.run.smithi181.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:=============================================================================== 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.276 INFO:teuthology.orchestra.run.smithi181.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:03:34.277 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T11:03:34.287 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T11:03:34.287 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:03:34.287 DEBUG:teuthology.orchestra.run.smithi042:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T11:03:34.287 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi181.front.sepia.ceph.com 2024-09-17T11:03:34.288 DEBUG:teuthology.orchestra.run.smithi181:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T11:03:34.666 INFO:teuthology.orchestra.run.smithi181.stdout:Dependencies resolved. 2024-09-17T11:03:34.672 INFO:teuthology.orchestra.run.smithi042.stdout:Dependencies resolved. 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout: Package Architecture Version Repository Size 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:Removing: 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:Removing unused dependencies: 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction Summary 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout:Remove 2 Packages 2024-09-17T11:03:34.682 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:34.683 INFO:teuthology.orchestra.run.smithi181.stdout:Freed space: 5.5 M 2024-09-17T11:03:34.683 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction check 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout: Package Architecture Version Repository Size 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:Removing: 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:Removing unused dependencies: 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction Summary 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:34.686 INFO:teuthology.orchestra.run.smithi042.stdout:Remove 2 Packages 2024-09-17T11:03:34.687 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:34.687 INFO:teuthology.orchestra.run.smithi042.stdout:Freed space: 5.5 M 2024-09-17T11:03:34.687 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction check 2024-09-17T11:03:34.687 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction check succeeded. 2024-09-17T11:03:34.687 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction test 2024-09-17T11:03:34.691 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction check succeeded. 2024-09-17T11:03:34.691 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction test 2024-09-17T11:03:34.748 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction test succeeded. 2024-09-17T11:03:34.748 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction 2024-09-17T11:03:34.748 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction test succeeded. 2024-09-17T11:03:34.749 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction 2024-09-17T11:03:34.889 INFO:teuthology.orchestra.run.smithi042.stdout: Preparing : 1/1 2024-09-17T11:03:34.889 INFO:teuthology.orchestra.run.smithi181.stdout: Preparing : 1/1 2024-09-17T11:03:34.964 INFO:teuthology.orchestra.run.smithi181.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T11:03:34.965 INFO:teuthology.orchestra.run.smithi042.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T11:03:35.020 INFO:teuthology.orchestra.run.smithi181.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:03:35.024 INFO:teuthology.orchestra.run.smithi042.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:03:35.497 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:03:35.497 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T11:03:35.534 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:03:35.534 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T11:03:35.747 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T11:03:35.747 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:35.747 INFO:teuthology.orchestra.run.smithi042.stdout:Removed: 2024-09-17T11:03:35.748 INFO:teuthology.orchestra.run.smithi042.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:03:35.748 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:35.748 INFO:teuthology.orchestra.run.smithi042.stdout:Complete! 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout:Removed: 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:35.770 INFO:teuthology.orchestra.run.smithi181.stdout:Complete! 2024-09-17T11:03:36.593 INFO:teuthology.orchestra.run.smithi181.stdout:Last metadata expiration check: 0:00:52 ago on Tue 17 Sep 2024 11:02:44 AM UTC. 2024-09-17T11:03:36.613 INFO:teuthology.orchestra.run.smithi042.stdout:Last metadata expiration check: 0:00:46 ago on Tue 17 Sep 2024 11:02:50 AM UTC. 2024-09-17T11:03:36.737 INFO:teuthology.orchestra.run.smithi181.stdout:Dependencies resolved. 2024-09-17T11:03:36.737 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:36.737 INFO:teuthology.orchestra.run.smithi181.stdout: Package Arch Version Repository Size 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout:Installing: 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout:Installing dependencies: 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:36.738 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction Summary 2024-09-17T11:03:36.739 INFO:teuthology.orchestra.run.smithi181.stdout:================================================================================ 2024-09-17T11:03:36.739 INFO:teuthology.orchestra.run.smithi181.stdout:Install 7 Packages 2024-09-17T11:03:36.739 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:36.762 INFO:teuthology.orchestra.run.smithi042.stdout:Dependencies resolved. 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: Package Arch Version Repository Size 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout:Installing: 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout:Installing dependencies: 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T11:03:36.763 INFO:teuthology.orchestra.run.smithi042.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction Summary 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout:Install 7 Packages 2024-09-17T11:03:36.764 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:36.784 INFO:teuthology.orchestra.run.smithi181.stdout:Total download size: 5.2 M 2024-09-17T11:03:36.784 INFO:teuthology.orchestra.run.smithi181.stdout:Installed size: 19 M 2024-09-17T11:03:36.784 INFO:teuthology.orchestra.run.smithi181.stdout:Downloading Packages: 2024-09-17T11:03:36.795 INFO:teuthology.orchestra.run.smithi042.stdout:Total download size: 5.2 M 2024-09-17T11:03:36.795 INFO:teuthology.orchestra.run.smithi042.stdout:Installed size: 19 M 2024-09-17T11:03:36.795 INFO:teuthology.orchestra.run.smithi042.stdout:Downloading Packages: 2024-09-17T11:03:37.009 INFO:teuthology.orchestra.run.smithi181.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 465 kB/s | 44 kB 00:00 2024-09-17T11:03:37.034 INFO:teuthology.orchestra.run.smithi181.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 878 kB/s | 106 kB 00:00 2024-09-17T11:03:37.068 INFO:teuthology.orchestra.run.smithi181.stdout:(3/7): python3-configshell-1.1.30-1.el9.noarch. 1.2 MB/s | 72 kB 00:00 2024-09-17T11:03:37.095 INFO:teuthology.orchestra.run.smithi181.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 1.3 MB/s | 84 kB 00:00 2024-09-17T11:03:37.127 INFO:teuthology.orchestra.run.smithi181.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.1 MB/s | 906 kB 00:00 2024-09-17T11:03:37.194 INFO:teuthology.orchestra.run.smithi181.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.5 MB/s | 837 kB 00:00 2024-09-17T11:03:37.310 INFO:teuthology.orchestra.run.smithi042.stdout:(1/7): nvmetcli-0.7-3.el9.noarch.rpm 117 kB/s | 44 kB 00:00 2024-09-17T11:03:37.510 INFO:teuthology.orchestra.run.smithi042.stdout:(2/7): libnvme-1.9-3.el9.x86_64.rpm 183 kB/s | 106 kB 00:00 2024-09-17T11:03:37.536 INFO:teuthology.orchestra.run.smithi042.stdout:(3/7): python3-configshell-1.1.30-1.el9.noarch. 318 kB/s | 72 kB 00:00 2024-09-17T11:03:37.628 INFO:teuthology.orchestra.run.smithi042.stdout:(4/7): python3-kmod-0.9-32.el9.x86_64.rpm 720 kB/s | 84 kB 00:00 2024-09-17T11:03:37.852 INFO:teuthology.orchestra.run.smithi181.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 4.2 MB/s | 3.2 MB 00:00 2024-09-17T11:03:37.853 INFO:teuthology.orchestra.run.smithi181.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:03:37.853 INFO:teuthology.orchestra.run.smithi181.stdout:Total 4.8 MB/s | 5.2 MB 00:01 2024-09-17T11:03:37.960 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction check 2024-09-17T11:03:37.975 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction check succeeded. 2024-09-17T11:03:37.975 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction test 2024-09-17T11:03:37.978 INFO:teuthology.orchestra.run.smithi042.stdout:(5/7): nvme-cli-2.9.1-6.el9.x86_64.rpm 864 kB/s | 906 kB 00:01 2024-09-17T11:03:38.012 INFO:teuthology.orchestra.run.smithi042.stdout:(6/7): python3-urwid-2.1.2-4.el9.x86_64.rpm 1.7 MB/s | 837 kB 00:00 2024-09-17T11:03:38.270 INFO:teuthology.orchestra.run.smithi181.stdout:Transaction test succeeded. 2024-09-17T11:03:38.270 INFO:teuthology.orchestra.run.smithi181.stdout:Running transaction 2024-09-17T11:03:38.687 INFO:teuthology.orchestra.run.smithi042.stdout:(7/7): runc-1.1.13-4.el9.x86_64.rpm 3.0 MB/s | 3.2 MB 00:01 2024-09-17T11:03:38.687 INFO:teuthology.orchestra.run.smithi042.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:03:38.687 INFO:teuthology.orchestra.run.smithi042.stdout:Total 2.7 MB/s | 5.2 MB 00:01 2024-09-17T11:03:38.735 INFO:teuthology.orchestra.run.smithi181.stdout: Preparing : 1/1 2024-09-17T11:03:38.808 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction check 2024-09-17T11:03:38.821 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T11:03:38.825 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction check succeeded. 2024-09-17T11:03:38.825 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction test 2024-09-17T11:03:38.856 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T11:03:38.884 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T11:03:39.088 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T11:03:39.115 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T11:03:39.162 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction test succeeded. 2024-09-17T11:03:39.163 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction 2024-09-17T11:03:39.557 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T11:03:39.589 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T11:03:39.662 INFO:teuthology.orchestra.run.smithi042.stdout: Preparing : 1/1 2024-09-17T11:03:39.698 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T11:03:39.764 INFO:teuthology.orchestra.run.smithi181.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:39.765 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/7 2024-09-17T11:03:39.806 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/7 2024-09-17T11:03:39.857 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/7 2024-09-17T11:03:40.075 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/7 2024-09-17T11:03:40.101 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T11:03:40.575 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/7 2024-09-17T11:03:40.611 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T11:03:40.725 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/7 2024-09-17T11:03:40.779 INFO:teuthology.orchestra.run.smithi181.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:40.779 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T11:03:40.780 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T11:03:40.780 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T11:03:40.780 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T11:03:40.780 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T11:03:40.780 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T11:03:40.793 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout:Installed: 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T11:03:41.154 INFO:teuthology.orchestra.run.smithi181.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T11:03:41.155 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:03:41.155 INFO:teuthology.orchestra.run.smithi181.stdout:Complete! 2024-09-17T11:03:41.558 DEBUG:teuthology.parallel:result is None 2024-09-17T11:03:41.838 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:41.838 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/7 2024-09-17T11:03:41.839 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/7 2024-09-17T11:03:41.839 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/7 2024-09-17T11:03:41.839 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/7 2024-09-17T11:03:41.839 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/7 2024-09-17T11:03:41.839 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/7 2024-09-17T11:03:42.175 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 7/7 2024-09-17T11:03:42.175 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:42.175 INFO:teuthology.orchestra.run.smithi042.stdout:Installed: 2024-09-17T11:03:42.175 INFO:teuthology.orchestra.run.smithi042.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:03:42.175 INFO:teuthology.orchestra.run.smithi042.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T11:03:42.176 INFO:teuthology.orchestra.run.smithi042.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T11:03:42.176 INFO:teuthology.orchestra.run.smithi042.stdout: runc-4:1.1.13-4.el9.x86_64 2024-09-17T11:03:42.176 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:03:42.176 INFO:teuthology.orchestra.run.smithi042.stdout:Complete! 2024-09-17T11:03:42.558 DEBUG:teuthology.parallel:result is None 2024-09-17T11:03:42.559 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-17T11:03:42.569 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-17T11:03:42.569 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:03:42.569 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:03:42.586 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-17T11:03:42.586 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_1 2024-09-17T11:03:42.642 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T11:03:42.642 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:42.642 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 976 Links: 1 2024-09-17T11:03:42.642 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:42.643 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:42.643 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:03:41.042310005 +0000 2024-09-17T11:03:42.643 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:40.690313300 +0000 2024-09-17T11:03:42.643 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:40.690313300 +0000 2024-09-17T11:03:42.643 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:40.690313300 +0000 2024-09-17T11:03:42.643 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T11:03:42.706 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:03:42.706 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:03:42.706 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000137683 s, 3.7 MB/s 2024-09-17T11:03:42.708 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T11:03:42.765 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_2 2024-09-17T11:03:42.823 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T11:03:42.823 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 966 Links: 1 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:03:41.042310005 +0000 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:42.824 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:42.824 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T11:03:42.887 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:03:42.888 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:03:42.888 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.00010397 s, 4.9 MB/s 2024-09-17T11:03:42.889 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T11:03:42.946 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_3 2024-09-17T11:03:43.001 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 960 Links: 1 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:03:41.043309996 +0000 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:40.688313319 +0000 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:40.688313319 +0000 2024-09-17T11:03:43.002 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:40.688313319 +0000 2024-09-17T11:03:43.002 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T11:03:43.066 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:03:43.066 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:03:43.066 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 9.7303e-05 s, 5.3 MB/s 2024-09-17T11:03:43.067 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T11:03:43.123 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_4 2024-09-17T11:03:43.178 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T11:03:43.178 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:03:41.043309996 +0000 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:43.179 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:40.689313309 +0000 2024-09-17T11:03:43.179 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T11:03:43.243 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:03:43.243 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:03:43.243 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000102843 s, 5.0 MB/s 2024-09-17T11:03:43.245 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T11:03:43.301 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:43.445 INFO:teuthology.orchestra.run.smithi042.stdout:loop 2024-09-17T11:03:43.447 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_1... 2024-09-17T11:03:43.447 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:43.483 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-09-17T11:03:43.516 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_11 2024-09-17T11:03:43.561 INFO:teuthology.orchestra.run.smithi042.stdout:connecting to device: nvme1 2024-09-17T11:03:43.564 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_2... 2024-09-17T11:03:43.564 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:43.640 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-09-17T11:03:43.673 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_21 2024-09-17T11:03:43.706 INFO:teuthology.orchestra.run.smithi042.stdout:connecting to device: nvme2 2024-09-17T11:03:43.708 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_3... 2024-09-17T11:03:43.708 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:43.783 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-09-17T11:03:43.815 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_31 2024-09-17T11:03:43.848 INFO:teuthology.orchestra.run.smithi042.stdout:connecting to device: nvme3 2024-09-17T11:03:43.851 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_4... 2024-09-17T11:03:43.851 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:03:43.927 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-09-17T11:03:43.960 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_41 2024-09-17T11:03:43.998 INFO:teuthology.orchestra.run.smithi042.stdout:connecting to device: nvme4 2024-09-17T11:03:44.000 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:03:44.000 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:03:44.053 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme list -o json 2024-09-17T11:03:44.119 INFO:teuthology.orchestra.run.smithi042.stdout:{ 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "Devices":[ 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: { 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "NameSpace":1, 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "SerialNumber":"8e272929a1b4bc38c3b2", 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:44.120 INFO:teuthology.orchestra.run.smithi042.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "SectorSize":512 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: }, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: { 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "NameSpace":1, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "SerialNumber":"54b6f036243e8099ec9a", 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: "SectorSize":512 2024-09-17T11:03:44.121 INFO:teuthology.orchestra.run.smithi042.stdout: }, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: { 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "NameSpace":1, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "SerialNumber":"1953e05d1dbf6988d6af", 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "SectorSize":512 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: }, 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: { 2024-09-17T11:03:44.122 INFO:teuthology.orchestra.run.smithi042.stdout: "NameSpace":1, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "SerialNumber":"91b7801d2db4c4d0c8b4", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "SectorSize":512 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: }, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: { 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "NameSpace":1, 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "Firmware":"E2010325", 2024-09-17T11:03:44.123 INFO:teuthology.orchestra.run.smithi042.stdout: "ModelNumber":"INTEL SSDPED1D480GA", 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: "SerialNumber":"PHMB75130021480DGN", 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: "UsedBytes":480103981056, 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: "MaximumLBA":937703088, 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: "PhysicalSize":480103981056, 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: "SectorSize":512 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: } 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout: ] 2024-09-17T11:03:44.124 INFO:teuthology.orchestra.run.smithi042.stdout:} 2024-09-17T11:03:44.125 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:03:44.125 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:03:44.125 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/scratch_devs 2024-09-17T11:03:44.192 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:03:44.192 DEBUG:teuthology.orchestra.run.smithi181:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:03:44.212 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-17T11:03:44.212 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_1 2024-09-17T11:03:44.271 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T11:03:44.271 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:03:39.989079277 +0000 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.272 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.272 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T11:03:44.338 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:03:44.338 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:03:44.338 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000220226 s, 2.3 MB/s 2024-09-17T11:03:44.339 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T11:03:44.397 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_2 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:44.454 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:03:39.990079216 +0000 2024-09-17T11:03:44.455 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.455 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.455 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:39.664098739 +0000 2024-09-17T11:03:44.455 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T11:03:44.519 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:03:44.520 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:03:44.520 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000172276 s, 3.0 MB/s 2024-09-17T11:03:44.521 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T11:03:44.579 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_3 2024-09-17T11:03:44.634 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:03:39.990079216 +0000 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:39.666098619 +0000 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:39.666098619 +0000 2024-09-17T11:03:44.635 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:39.666098619 +0000 2024-09-17T11:03:44.635 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T11:03:44.699 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:03:44.700 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:03:44.700 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000166338 s, 3.1 MB/s 2024-09-17T11:03:44.701 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T11:03:44.758 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/vg_nvme/lv_4 2024-09-17T11:03:44.814 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 962 Links: 1 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:03:39.990079216 +0000 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:39.663098799 +0000 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:39.663098799 +0000 2024-09-17T11:03:44.815 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:39.663098799 +0000 2024-09-17T11:03:44.815 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T11:03:44.878 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:03:44.878 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:03:44.879 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000174756 s, 2.9 MB/s 2024-09-17T11:03:44.880 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T11:03:44.935 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:45.073 INFO:teuthology.orchestra.run.smithi181.stdout:loop 2024-09-17T11:03:45.075 INFO:tasks.nvme_loop:Connecting nvme_loop smithi181:/dev/vg_nvme/lv_1... 2024-09-17T11:03:45.075 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:45.107 INFO:teuthology.orchestra.run.smithi181.stdout:1 2024-09-17T11:03:45.136 INFO:teuthology.orchestra.run.smithi181.stdout:/dev/vg_nvme/lv_11 2024-09-17T11:03:45.176 INFO:teuthology.orchestra.run.smithi181.stdout:connecting to device: nvme1 2024-09-17T11:03:45.178 INFO:tasks.nvme_loop:Connecting nvme_loop smithi181:/dev/vg_nvme/lv_2... 2024-09-17T11:03:45.178 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:45.252 INFO:teuthology.orchestra.run.smithi181.stdout:1 2024-09-17T11:03:45.286 INFO:teuthology.orchestra.run.smithi181.stdout:/dev/vg_nvme/lv_21 2024-09-17T11:03:45.321 INFO:teuthology.orchestra.run.smithi181.stdout:connecting to device: nvme2 2024-09-17T11:03:45.323 INFO:tasks.nvme_loop:Connecting nvme_loop smithi181:/dev/vg_nvme/lv_3... 2024-09-17T11:03:45.323 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:45.399 INFO:teuthology.orchestra.run.smithi181.stdout:1 2024-09-17T11:03:45.430 INFO:teuthology.orchestra.run.smithi181.stdout:/dev/vg_nvme/lv_31 2024-09-17T11:03:45.462 INFO:teuthology.orchestra.run.smithi181.stdout:connecting to device: nvme3 2024-09-17T11:03:45.464 INFO:tasks.nvme_loop:Connecting nvme_loop smithi181:/dev/vg_nvme/lv_4... 2024-09-17T11:03:45.464 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:03:45.537 INFO:teuthology.orchestra.run.smithi181.stdout:1 2024-09-17T11:03:45.568 INFO:teuthology.orchestra.run.smithi181.stdout:/dev/vg_nvme/lv_41 2024-09-17T11:03:45.603 INFO:teuthology.orchestra.run.smithi181.stdout:connecting to device: nvme4 2024-09-17T11:03:45.605 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:03:45.605 DEBUG:teuthology.orchestra.run.smithi181:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:03:45.662 DEBUG:teuthology.orchestra.run.smithi181:> sudo nvme list -o json 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout:{ 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "Devices":[ 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: { 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "NameSpace":1, 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "SerialNumber":"00cdd69817d9b638d0b1", 2024-09-17T11:03:45.728 INFO:teuthology.orchestra.run.smithi181.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "SectorSize":512 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: }, 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: { 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "NameSpace":1, 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "SerialNumber":"146ae7f5fa7f309beab6", 2024-09-17T11:03:45.729 INFO:teuthology.orchestra.run.smithi181.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "SectorSize":512 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: }, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: { 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "NameSpace":1, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "SerialNumber":"167d8c63060398da59fe", 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:45.730 INFO:teuthology.orchestra.run.smithi181.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "SectorSize":512 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: }, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: { 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "NameSpace":1, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "ModelNumber":"Linux", 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "SerialNumber":"94ac30e8cb7ae907ca27", 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "UsedBytes":95995035648, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "MaximumLBA":187490304, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "PhysicalSize":95995035648, 2024-09-17T11:03:45.731 INFO:teuthology.orchestra.run.smithi181.stdout: "SectorSize":512 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: }, 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: { 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "NameSpace":1, 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "Firmware":"8DV101H0", 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "SerialNumber":"CVFT6246000E400BGN", 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "UsedBytes":400088457216, 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "MaximumLBA":781422768, 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "PhysicalSize":400088457216, 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: "SectorSize":512 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: } 2024-09-17T11:03:45.732 INFO:teuthology.orchestra.run.smithi181.stdout: ] 2024-09-17T11:03:45.733 INFO:teuthology.orchestra.run.smithi181.stdout:} 2024-09-17T11:03:45.734 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:03:45.734 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:03:45.734 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/scratch_devs 2024-09-17T11:03:45.798 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T11:03:45.896 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': '7498493279982dfe87f00616198a5967475f6169'} 2024-09-17T11:03:45.896 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:03:45.897 INFO:tasks.cephadm:Cluster fsid is 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:45.897 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T11:03:45.897 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-17T11:03:45.897 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi042': '172.21.15.42', 'mon.smithi181': '172.21.15.181'} 2024-09-17T11:03:45.897 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T11:03:45.897 DEBUG:teuthology.orchestra.run.smithi042:> sudo hostname $(hostname -s) 2024-09-17T11:03:45.931 DEBUG:teuthology.orchestra.run.smithi181:> sudo hostname $(hostname -s) 2024-09-17T11:03:45.956 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T11:03:45.956 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:03:46.100 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '7498493279982dfe87f00616198a5967475f6169', '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/56090/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4937-g74984932', 'node_name': '172.21.2.22+braggi22', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4937.g74984932'}, 'url': 'https://4.chacra.ceph.com/r/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-15 22:16:53.267223', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T11:03:46.239 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref main, sha1 7498493279982dfe87f00616198a5967475f6169 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:03:46.240 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm 2024-09-17T11:03:46.241 INFO:tasks.cephadm:Downloading cephadm from url: https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm 2024-09-17T11:03:46.241 DEBUG:teuthology.orchestra.run.smithi042:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:46.635 INFO:teuthology.orchestra.run.smithi042.stdout:-rw-r--r--. 1 ubuntu ubuntu 804299 Sep 17 11:03 /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:46.635 DEBUG:teuthology.orchestra.run.smithi181:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:47.011 INFO:teuthology.orchestra.run.smithi181.stdout:-rw-r--r--. 1 ubuntu ubuntu 804299 Sep 17 11:03 /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:47.012 DEBUG:teuthology.orchestra.run.smithi042:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:47.033 DEBUG:teuthology.orchestra.run.smithi181:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T11:03:47.058 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 on all hosts... 2024-09-17T11:03:47.058 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 pull 2024-09-17T11:03:47.076 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 pull 2024-09-17T11:03:48.687 INFO:teuthology.orchestra.run.smithi042.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:03:48.817 INFO:teuthology.orchestra.run.smithi181.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:04:18.966 INFO:teuthology.orchestra.run.smithi181.stdout:{ 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout: "ceph_version": "ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev)", 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout: "image_id": "6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76", 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout: "repo_digests": [ 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb" 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout: ] 2024-09-17T11:04:18.967 INFO:teuthology.orchestra.run.smithi181.stdout:} 2024-09-17T11:04:19.239 INFO:teuthology.orchestra.run.smithi042.stdout:{ 2024-09-17T11:04:19.239 INFO:teuthology.orchestra.run.smithi042.stdout: "ceph_version": "ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev)", 2024-09-17T11:04:19.239 INFO:teuthology.orchestra.run.smithi042.stdout: "image_id": "6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76", 2024-09-17T11:04:19.239 INFO:teuthology.orchestra.run.smithi042.stdout: "repo_digests": [ 2024-09-17T11:04:19.240 INFO:teuthology.orchestra.run.smithi042.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb" 2024-09-17T11:04:19.240 INFO:teuthology.orchestra.run.smithi042.stdout: ] 2024-09-17T11:04:19.240 INFO:teuthology.orchestra.run.smithi042.stdout:} 2024-09-17T11:04:19.265 DEBUG:teuthology.orchestra.run.smithi042:> sudo mkdir -p /etc/ceph 2024-09-17T11:04:19.303 DEBUG:teuthology.orchestra.run.smithi181:> sudo mkdir -p /etc/ceph 2024-09-17T11:04:19.332 DEBUG:teuthology.orchestra.run.smithi042:> sudo chmod 777 /etc/ceph 2024-09-17T11:04:19.369 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 777 /etc/ceph 2024-09-17T11:04:19.399 INFO:tasks.cephadm:Writing seed config... 2024-09-17T11:04:19.400 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T11:04:19.400 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T11:04:19.400 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T11:04:19.400 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T11:04:19.401 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T11:04:19.401 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T11:04:19.401 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T11:04:19.401 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-17T11:04:19.401 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:04:19.401 DEBUG:teuthology.orchestra.run.smithi042:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T11:04:19.425 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 82491f84-74e4-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-17T11:04:19.425 DEBUG:teuthology.orchestra.run.smithi042:mon.smithi042> sudo journalctl -f -n 0 -u ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service 2024-09-17T11:04:19.468 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T11:04:19.468 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 -v bootstrap --fsid 82491f84-74e4-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.42 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:04:19.678 INFO:teuthology.orchestra.run.smithi042.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:04:19.678 INFO:teuthology.orchestra.run.smithi042.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169', '-v', 'bootstrap', '--fsid', '82491f84-74e4-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.42', '--skip-admin-label'] 2024-09-17T11:04:19.678 INFO:teuthology.orchestra.run.smithi042.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T11:04:19.678 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying podman|docker is present... 2024-09-17T11:04:19.703 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stdout 5.2.2 2024-09-17T11:04:19.703 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying lvm2 is present... 2024-09-17T11:04:19.703 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying time synchronization is in place... 2024-09-17T11:04:19.711 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T11:04:19.711 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T11:04:19.718 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T11:04:19.718 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:04:19.725 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout enabled 2024-09-17T11:04:19.731 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout active 2024-09-17T11:04:19.731 INFO:teuthology.orchestra.run.smithi042.stdout:Unit chronyd.service is enabled and running 2024-09-17T11:04:19.731 INFO:teuthology.orchestra.run.smithi042.stdout:Repeating the final host check... 2024-09-17T11:04:19.753 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stdout 5.2.2 2024-09-17T11:04:19.753 INFO:teuthology.orchestra.run.smithi042.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T11:04:19.754 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl is present 2024-09-17T11:04:19.754 INFO:teuthology.orchestra.run.smithi042.stdout:lvcreate is present 2024-09-17T11:04:19.760 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T11:04:19.760 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T11:04:19.767 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T11:04:19.767 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:04:19.773 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout enabled 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout active 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Unit chronyd.service is enabled and running 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Host looks OK 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Cluster fsid: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Acquiring lock 140545273607984 on /run/cephadm/82491f84-74e4-11ef-bceb-c7b262605968.lock 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Lock 140545273607984 acquired on /run/cephadm/82491f84-74e4-11ef-bceb-c7b262605968.lock 2024-09-17T11:04:19.781 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying IP 172.21.15.42 port 3300 ... 2024-09-17T11:04:19.782 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying IP 172.21.15.42 port 6789 ... 2024-09-17T11:04:19.782 INFO:teuthology.orchestra.run.smithi042.stdout:Base mon IP(s) is [172.21.15.42:3300, 172.21.15.42:6789], mon addrv is [v2:172.21.15.42:3300,v1:172.21.15.42:6789] 2024-09-17T11:04:19.785 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.42 metric 100 2024-09-17T11:04:19.785 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.42 metric 100 2024-09-17T11:04:19.787 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T11:04:19.788 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-17T11:04:19.788 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1799sec hoplimit 64 pref medium 2024-09-17T11:04:19.790 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T11:04:19.790 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T11:04:19.790 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T11:04:19.790 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-17T11:04:19.790 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1440/64 scope link 2024-09-17T11:04:19.791 INFO:teuthology.orchestra.run.smithi042.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T11:04:19.791 INFO:teuthology.orchestra.run.smithi042.stdout:Mon IP `172.21.15.42` is in CIDR network `172.21.0.0/20` 2024-09-17T11:04:19.792 INFO:teuthology.orchestra.run.smithi042.stdout:Mon IP `172.21.15.42` is in CIDR network `172.21.0.0/20` 2024-09-17T11:04:19.792 INFO:teuthology.orchestra.run.smithi042.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T11:04:19.792 INFO:teuthology.orchestra.run.smithi042.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T11:04:19.792 INFO:teuthology.orchestra.run.smithi042.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stdout 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Copying blob sha256:89cd78ca29aaec9efd0f7c5ff71447705f964d133563bccc90c7979c6d4b526f 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Copying config sha256:6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 2024-09-17T11:04:20.276 INFO:teuthology.orchestra.run.smithi042.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T11:04:21.247 INFO:teuthology.orchestra.run.smithi042.stdout:ceph: stdout ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev) 2024-09-17T11:04:21.247 INFO:teuthology.orchestra.run.smithi042.stdout:Ceph version: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev) 2024-09-17T11:04:21.247 INFO:teuthology.orchestra.run.smithi042.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T11:04:22.253 INFO:teuthology.orchestra.run.smithi042.stdout:stat: stdout 167 167 2024-09-17T11:04:22.253 INFO:teuthology.orchestra.run.smithi042.stdout:Creating initial keys... 2024-09-17T11:04:23.417 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph-authtool: stdout AQA2YulmcuOKMRAAk/AanyCnWQBPlp2Ll24UIg== 2024-09-17T11:04:24.430 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph-authtool: stdout AQA3Yulm23NFMRAAQ4OQ7k6T6aVQfTuQw8+Obw== 2024-09-17T11:04:25.460 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph-authtool: stdout AQA4YulmbYiQLhAAVihphHJiAKmd/rt9g88ppQ== 2024-09-17T11:04:25.461 INFO:teuthology.orchestra.run.smithi042.stdout:Creating initial monmap... 2024-09-17T11:04:26.441 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T11:04:26.441 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-17T11:04:26.441 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:26.441 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T11:04:26.441 INFO:teuthology.orchestra.run.smithi042.stdout:monmaptool for smithi042 [v2:172.21.15.42:3300,v1:172.21.15.42:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T11:04:26.442 INFO:teuthology.orchestra.run.smithi042.stdout:setting min_mon_release = quincy 2024-09-17T11:04:26.442 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: set fsid to 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:26.442 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T11:04:26.442 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:04:26.442 INFO:teuthology.orchestra.run.smithi042.stdout:Creating mon... 2024-09-17T11:04:27.404 INFO:teuthology.orchestra.run.smithi042.stdout:create mon.smithi042 on 2024-09-17T11:04:27.776 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T11:04:27.981 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target. 2024-09-17T11:04:27.981 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target. 2024-09-17T11:04:28.230 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042 2024-09-17T11:04:28.231 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Failed to reset failed state of unit ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service: Unit ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service not loaded. 2024-09-17T11:04:28.400 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target.wants/ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service → /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968@.service. 2024-09-17T11:04:28.814 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:28 smithi042 podman[25347]: 2024-09-17 11:04:28.813055928 +0000 UTC m=+0.284472089 container create b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, ceph=True, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-7498493, maintainer=Guillaume Abrioux ) 2024-09-17T11:04:31.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:30 smithi042 podman[25347]: 2024-09-17 11:04:30.916793787 +0000 UTC m=+2.388209901 container init b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, RELEASE=main-7498493, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T11:04:31.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:30 smithi042 podman[25347]: 2024-09-17 11:04:30.923660673 +0000 UTC m=+2.395076785 container start b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-7498493, GIT_CLEAN=True, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-09-17T11:04:31.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:30 smithi042 ceph-mon[25385]: mkfs 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:31.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:30 smithi042 ceph-mon[25385]: mon.smithi042 is new leader, mons smithi042 in quorum (ranks 0) 2024-09-17T11:04:31.761 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:04:31.761 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout disabled 2024-09-17T11:04:31.770 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:04:31.771 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:04:31.771 INFO:teuthology.orchestra.run.smithi042.stdout:firewalld.service is not enabled 2024-09-17T11:04:31.771 INFO:teuthology.orchestra.run.smithi042.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T11:04:31.771 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mon to start... 2024-09-17T11:04:31.771 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mon... 2024-09-17T11:04:32.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 bash[25347]: b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 2024-09-17T11:04:32.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 systemd[1]: Started Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:04:32.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: mon.smithi042 is new leader, mons smithi042 in quorum (ranks 0) 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: monmap epoch 1 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: last_changed 2024-09-17T11:04:25.826680+0000 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: created 2024-09-17T11:04:25.826680+0000 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: min_mon_release 19 (squid) 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: election_strategy: 1 2024-09-17T11:04:32.073 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: 0: [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] mon.smithi042 2024-09-17T11:04:32.074 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: fsmap 2024-09-17T11:04:32.074 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T11:04:32.074 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:31 smithi042 ceph-mon[25385]: mgrmap e1: no daemons active 2024-09-17T11:04:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:35 smithi042 ceph-mon[25385]: from='client.? 172.21.15.42:0/4032954575' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-17T11:04:40.451 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T11:04:40.451 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout id: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:40.451 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T11:04:40.451 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:40.451 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout services: 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi042 (age 4s) 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout data: 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:mon is available 2024-09-17T11:04:40.452 INFO:teuthology.orchestra.run.smithi042.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T11:04:41.277 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:41 smithi042 ceph-mon[25385]: from='client.? 172.21.15.42:0/2853306764' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-17T11:04:41.277 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:41 smithi042 ceph-mon[25385]: from='client.? 172.21.15.42:0/2853306764' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T11:04:41.539 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:41.539 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T11:04:41.539 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout fsid = 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.42:3300,v1:172.21.15.42:6789] 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T11:04:41.540 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T11:04:41.541 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T11:04:41.541 INFO:teuthology.orchestra.run.smithi042.stdout:Generating new minimal ceph.conf... 2024-09-17T11:04:42.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:42 smithi042 ceph-mon[25385]: from='client.? 172.21.15.42:0/1525047757' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:04:42.620 INFO:teuthology.orchestra.run.smithi042.stdout:Restarting the monitor... 2024-09-17T11:04:42.914 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:42 smithi042 systemd[1]: Stopping Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:04:43.245 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:42 smithi042 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042[25362]: 2024-09-17T11:04:42.912+0000 7f8796261640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi042 -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-17T11:04:43.245 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:42 smithi042 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042[25362]: 2024-09-17T11:04:42.912+0000 7f8796261640 -1 mon.smithi042@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T11:04:43.245 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 podman[25702]: 2024-09-17 11:04:43.045850304 +0000 UTC m=+0.253580093 container died b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, RELEASE=main-7498493, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-17T11:04:43.561 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 podman[25702]: 2024-09-17 11:04:43.31867048 +0000 UTC m=+0.526400277 container cleanup b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, maintainer=Guillaume Abrioux , RELEASE=main-7498493, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, ceph=True) 2024-09-17T11:04:43.561 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 bash[25702]: ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042 2024-09-17T11:04:43.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 podman[25720]: 2024-09-17 11:04:43.56091839 +0000 UTC m=+0.507954240 container remove b392df4f71f706dd8529002a16cc2ebe4c7b0a7523123d1b4aff87116dc2c234 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=main-7498493, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_CLEAN=True) 2024-09-17T11:04:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 systemd[1]: ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service: Deactivated successfully. 2024-09-17T11:04:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 systemd[1]: Stopped Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:04:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 systemd[1]: Starting Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:04:44.173 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 podman[25817]: 2024-09-17 11:04:43.911825857 +0000 UTC m=+0.105153712 container create f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=main-7498493, GIT_CLEAN=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:43 smithi042 podman[25817]: 2024-09-17 11:04:43.822961275 +0000 UTC m=+0.016289145 image pull 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 podman[25817]: 2024-09-17 11:04:44.097672211 +0000 UTC m=+0.291000066 container init f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, RELEASE=main-7498493, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 podman[25817]: 2024-09-17 11:04:44.102526963 +0000 UTC m=+0.295854828 container start f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-7498493) 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev), process ceph-mon, pid 7 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: pidfile_write: ignore empty --pid-file 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: load: jerasure load: lrc 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: RocksDB version: 7.9.2 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Git sha 0 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Compile date 2024-09-15 20:52:36 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: DB SUMMARY 2024-09-17T11:04:44.174 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: DB Session ID: U5I4WZ8BE7O7PZIIUBLC 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: CURRENT file: CURRENT 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi042/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi042/store.db: 000009.log size: 89383 ; 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.error_if_exists: 0 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.create_if_missing: 0 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.paranoid_checks: 1 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T11:04:44.175 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.env: 0x55b8bfcde120 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.info_log: 0x55b8c0ff38e0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.statistics: (nil) 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.use_fsync: 0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_log_file_size: 0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_fallocate: 1 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T11:04:44.176 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.use_direct_reads: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.db_log_dir: 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.wal_dir: 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T11:04:44.177 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.write_buffer_manager: 0x55b8c0ff7b80 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T11:04:44.178 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T11:04:44.179 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T11:04:44.179 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T11:04:44.179 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.unordered_write: 0 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.row_cache: None 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.wal_filter: None 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T11:04:44.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.two_write_queues: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.wal_compression: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.atomic_flush: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.log_readahead_size: 0 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T11:04:44.181 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_background_jobs: 2 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_background_compactions: -1 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_subcompactions: 1 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T11:04:44.182 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_open_files: -1 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_background_flushes: -1 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Compression algorithms supported: 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kZSTD supported: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kXpressCompression supported: 0 2024-09-17T11:04:44.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kBZip2Compression supported: 0 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kLZ4Compression supported: 1 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kZlibCompression supported: 1 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: kSnappyCompression supported: 1 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi042/store.db/MANIFEST-000010 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.merge_operator: 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_filter: None 2024-09-17T11:04:44.184 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55b8c0ff3540) 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: cache_index_and_filter_blocks: 1 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: pin_top_level_index_and_filter: 1 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: index_type: 0 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: data_block_index_type: 0 2024-09-17T11:04:44.185 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: index_shortening: 1 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: checksum: 4 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: no_block_cache: 0 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_cache: 0x55b8c0fe7610 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_cache_name: BinnedLRUCache 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_cache_options: 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: capacity : 536870912 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: num_shard_bits : 4 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: strict_capacity_limit : 0 2024-09-17T11:04:44.186 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: high_pri_pool_ratio: 0.000 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_cache_compressed: (nil) 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: persistent_cache: (nil) 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_size: 4096 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_size_deviation: 10 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_restart_interval: 16 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: index_block_restart_interval: 1 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: metadata_block_size: 4096 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: partition_filters: 0 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: use_delta_encoding: 1 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: filter_policy: bloomfilter 2024-09-17T11:04:44.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: whole_key_filtering: 1 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: verify_compression: 0 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: read_amp_bytes_per_bit: 0 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: format_version: 5 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: enable_index_compression: 1 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: block_align: 0 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: max_auto_readahead_size: 262144 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: prepopulate_block_cache: 0 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: initial_auto_readahead_size: 8192 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T11:04:44.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression: NoCompression 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.num_levels: 7 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T11:04:44.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:04:44.190 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T11:04:44.191 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T11:04:44.192 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T11:04:44.193 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T11:04:44.194 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.inplace_update_support: 0 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.bloom_locality: 0 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.max_successive_merges: 0 2024-09-17T11:04:44.195 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.ttl: 2592000 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enable_blob_files: false 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.min_blob_size: 0 2024-09-17T11:04:44.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi042/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-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 8c0887b7-c523-4dfd-8e9d-b8ab7a52befb 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571084129492, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T11:04:44.197 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571084130391, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 86048, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 263, "table_properties": {"data_size": 84170, "index_size": 262, "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": 10032, "raw_average_key_size": 46, "raw_value_size": 78374, "raw_average_value_size": 359, "num_data_blocks": 12, "num_entries": 218, "num_filter_entries": 218, "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": 1726571084, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "8c0887b7-c523-4dfd-8e9d-b8ab7a52befb", "db_session_id": "U5I4WZ8BE7O7PZIIUBLC", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571084130488, "job": 1, "event": "recovery_finished"} 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi042/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55b8c1016e00 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: DB pointer 0x55b8c1118000 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ** DB Stats ** 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.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-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:04:44.198 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.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-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ** Compaction Stats [default] ** 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.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-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: L0 2/0 85.93 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 147.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Sum 2/0 85.93 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 147.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.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 147.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ** Compaction Stats [default] ** 2024-09-17T11:04:44.199 INFO:journalctl@ceph.mon.smithi042.smithi042.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-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.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 147.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T11:04:44.200 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Cumulative compaction: 0.00 GB write, 26.22 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Interval compaction: 0.00 GB write, 26.22 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.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-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Block cache BinnedLRUCache@0x55b8c0fe7610#7 capacity: 512.00 MB usage: 1.23 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.47 KB,8.9407e-05%) Misc(1,0.00 KB,0%) 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: starting mon.smithi042 rank 0 at public addrs [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] at bind addrs [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi042 fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???) e1 preinit fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).mds e1 new map 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).mds e1 print_map 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: e1 2024-09-17T11:04:44.201 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: btime 2024-09-17T11:04:30:967777+0000 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: legacy client fscid: -1 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: No filesystems configured 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 bash[25817]: f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 2024-09-17T11:04:44.202 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 systemd[1]: Started Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:04:44.203 INFO:teuthology.orchestra.run.smithi042.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T11:04:44.436 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mon.smithi042 is new leader, mons smithi042 in quorum (ranks 0) 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: monmap epoch 1 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: last_changed 2024-09-17T11:04:25.826680+0000 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: created 2024-09-17T11:04:25.826680+0000 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: min_mon_release 19 (squid) 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: election_strategy: 1 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: 0: [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] mon.smithi042 2024-09-17T11:04:44.437 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: fsmap 2024-09-17T11:04:44.438 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T11:04:44.438 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:44 smithi042 ceph-mon[25856]: mgrmap e1: no daemons active 2024-09-17T11:04:45.198 INFO:teuthology.orchestra.run.smithi042.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T11:04:45.220 INFO:teuthology.orchestra.run.smithi042.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:04:45.220 INFO:teuthology.orchestra.run.smithi042.stdout:Creating mgr... 2024-09-17T11:04:45.221 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T11:04:45.221 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T11:04:45.221 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-17T11:04:45.485 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-82491f84-74e4-11ef-bceb-c7b262605968@mgr.smithi042.jxsumf 2024-09-17T11:04:45.486 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Failed to reset failed state of unit ceph-82491f84-74e4-11ef-bceb-c7b262605968@mgr.smithi042.jxsumf.service: Unit ceph-82491f84-74e4-11ef-bceb-c7b262605968@mgr.smithi042.jxsumf.service not loaded. 2024-09-17T11:04:45.727 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968.target.wants/ceph-82491f84-74e4-11ef-bceb-c7b262605968@mgr.smithi042.jxsumf.service → /etc/systemd/system/ceph-82491f84-74e4-11ef-bceb-c7b262605968@.service. 2024-09-17T11:04:45.960 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:45 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1313517914' entity='client.admin' 2024-09-17T11:04:46.737 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:04:46.737 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout disabled 2024-09-17T11:04:46.744 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:04:46.745 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:04:46.745 INFO:teuthology.orchestra.run.smithi042.stdout:firewalld.service is not enabled 2024-09-17T11:04:46.745 INFO:teuthology.orchestra.run.smithi042.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T11:04:46.753 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:04:46.754 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout disabled 2024-09-17T11:04:46.761 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:04:46.761 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:04:46.761 INFO:teuthology.orchestra.run.smithi042.stdout:firewalld.service is not enabled 2024-09-17T11:04:46.761 INFO:teuthology.orchestra.run.smithi042.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-17T11:04:46.762 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mgr to start... 2024-09-17T11:04:46.762 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mgr... 2024-09-17T11:04:47.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:47 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3891041204' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsid": "82491f84-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:04:47.876 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "smithi042" 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:47.877 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:04:47.878 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:04:47.881 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:04:47.882 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:04:30:967777+0000", 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:04:47.883 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:04:30.968491+0000", 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:47.884 INFO:teuthology.orchestra.run.smithi042.stdout:mgr not available, waiting (1/15)... 2024-09-17T11:04:50.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:50 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4009355293' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:04:51.208 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsid": "82491f84-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:51.209 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "smithi042" 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:04:51.210 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:04:51.211 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:04:30:967777+0000", 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.214 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:04:51.215 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:04:30.968491+0000", 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:51.216 INFO:teuthology.orchestra.run.smithi042.stdout:mgr not available, waiting (2/15)... 2024-09-17T11:04:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: Activating manager daemon smithi042.jxsumf 2024-09-17T11:04:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: mgrmap e2: smithi042.jxsumf(active, starting, since 0.00299806s) 2024-09-17T11:04:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:04:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:04:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:04:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi042.jxsumf", "id": "smithi042.jxsumf"} : dispatch 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: Manager daemon smithi042.jxsumf is now available 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/trash_purge_schedule"} : dispatch 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' 2024-09-17T11:04:52.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:51 smithi042 ceph-mon[25856]: from='mgr.14100 172.21.15.42:0/808020249' entity='mgr.smithi042.jxsumf' 2024-09-17T11:04:54.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:53 smithi042 ceph-mon[25856]: mgrmap e3: smithi042.jxsumf(active, since 1.00795s) 2024-09-17T11:04:54.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:54.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:54.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsid": "82491f84-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:04:54.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:04:54.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "smithi042" 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:54.667 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:04:54.668 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:04:30:967777+0000", 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:04:54.669 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:04:54.670 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:04:30.968491+0000", 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:54.671 INFO:teuthology.orchestra.run.smithi042.stdout:mgr is available 2024-09-17T11:04:54.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:54 smithi042 ceph-mon[25856]: mgrmap e4: smithi042.jxsumf(active, since 2s) 2024-09-17T11:04:54.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:54 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3244869403' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout fsid = 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.42:3300,v1:172.21.15.42:6789] 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T11:04:55.902 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T11:04:55.903 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 2024-09-17T11:04:55.903 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T11:04:55.903 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T11:04:55.903 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T11:04:55.903 INFO:teuthology.orchestra.run.smithi042.stdout:Enabling cephadm module... 2024-09-17T11:04:56.233 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:55 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3531300640' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-17T11:04:57.219 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:56 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2459695421' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-17T11:04:58.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:57 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2459695421' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T11:04:58.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:57 smithi042 ceph-mon[25856]: mgrmap e5: smithi042.jxsumf(active, since 5s) 2024-09-17T11:04:58.891 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "active_name": "smithi042.jxsumf", 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for the mgr to restart... 2024-09-17T11:04:58.892 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mgr epoch 5... 2024-09-17T11:04:59.172 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:04:58 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2077828086' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-17T11:05:02.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: Active manager daemon smithi042.jxsumf restarted 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: Activating manager daemon smithi042.jxsumf 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: mgrmap e6: smithi042.jxsumf(active, starting, since 0.00343233s) 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi042.jxsumf", "id": "smithi042.jxsumf"} : dispatch 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:05:02.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:05:02.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:05:02.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:02 smithi042 ceph-mon[25856]: Manager daemon smithi042.jxsumf is now available 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:mgr epoch 5 is available 2024-09-17T11:05:03.777 INFO:teuthology.orchestra.run.smithi042.stdout:Verifying orchestrator module is enabled... 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: Found migration_current of "None". Setting to last migration. 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/trash_purge_schedule"} : dispatch 2024-09-17T11:05:04.226 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:03 smithi042 ceph-mon[25856]: mgrmap e7: smithi042.jxsumf(active, since 1.00576s) 2024-09-17T11:05:05.313 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:04 smithi042 ceph-mon[25856]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T11:05:05.313 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:04 smithi042 ceph-mon[25856]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T11:05:05.314 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:04 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:05.314 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1702570567' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-17T11:05:05.591 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-17T11:05:05.591 INFO:teuthology.orchestra.run.smithi042.stdout:Setting orchestrator backend to cephadm... 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:04] ENGINE Bus STARTING 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:04] ENGINE Serving on http://172.21.15.42:8765 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:04] ENGINE Serving on https://172.21.15.42:7150 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:04] ENGINE Bus STARTED 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:04] ENGINE Error in HTTPServer.serve 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Traceback (most recent call last): 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:05:06.267 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._run(expiration_interval) 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s = self.context.wrap_socket( 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: return self.sslsocket_class._create( 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self.do_handshake() 2024-09-17T11:05:06.268 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:05:06.269 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._sslobj.do_handshake() 2024-09-17T11:05:06.269 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:05:06.269 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1702570567' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-17T11:05:06.269 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:05 smithi042 ceph-mon[25856]: mgrmap e8: smithi042.jxsumf(active, since 2s) 2024-09-17T11:05:07.538 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:07 smithi042 ceph-mon[25856]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:07.538 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:07 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:07.538 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:07 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:08.118 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T11:05:08.118 INFO:teuthology.orchestra.run.smithi042.stdout:Generating ssh key... 2024-09-17T11:05:08.372 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:08 smithi042 ceph-mon[25856]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:09.538 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:09 smithi042 ceph-mon[25856]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:09.539 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:09 smithi042 ceph-mon[25856]: Generating ssh key... 2024-09-17T11:05:09.539 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:09 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:09.539 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:09 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:11.061 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:11 smithi042 ceph-mon[25856]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:11.063 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCol9icfPERWmQZOsRId+lWEmB86KwRwzKgU4qYqijSlD2IeiN6BFTz8gsy8JbXXvrf327Qid8gt1+EbWr0r4pxSdCexiA9HNnIz5jjiKnZyvTg2g0BOAazLMzAOsZo2Cj9LDB4gZ1tGNh/OlbXmWehIfzWqwv3c1HPfs5AwAL5fS+X2f6D3o1UtfEjTusRkwG4STMkOUc0Fyq7N2KgmcgeD71QNt8Ddpp3t8/Ym3vUjPFE+u2XsdCg+Tzmbu89g3newBJsCenTfpj4mAEgBguYgbM6AUdoSTRkARIywn6wMA8QdYofnspEcrQ2xmLcWXDOhIhvi9apjvKJJNsL9Y0maiO6aJFuX9PjejW/DmnOxS76Gi7VkswsU22EWruohMcKBGv/D3pdTk88Jyx2gCnhIKN0S4KyFWSz6HJzcawM+giwLMC3agoftkw8X21tD/YcDjgcJgqg76KMY9Bb3+OqJHpl5qcTZKwyLdR56L4w62d2NI5TIKxeixPEDeuYkas= ceph-82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:11.064 INFO:teuthology.orchestra.run.smithi042.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:05:11.065 INFO:teuthology.orchestra.run.smithi042.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T11:05:11.074 INFO:teuthology.orchestra.run.smithi042.stdout:Adding host smithi042... 2024-09-17T11:05:12.167 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:12 smithi042 ceph-mon[25856]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi042", "addr": "172.21.15.42", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:13.264 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:13 smithi042 ceph-mon[25856]: Deploying cephadm binary to smithi042 2024-09-17T11:05:16.231 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Added host 'smithi042' with addr '172.21.15.42' 2024-09-17T11:05:16.231 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying mon service with default placement... 2024-09-17T11:05:16.478 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:16 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:16.478 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:16 smithi042 ceph-mon[25856]: Added host smithi042 2024-09-17T11:05:16.478 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:16 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:17.943 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T11:05:17.943 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying mgr service with default placement... 2024-09-17T11:05:18.293 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:18 smithi042 ceph-mon[25856]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:18.293 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:18 smithi042 ceph-mon[25856]: Saving service mon spec with placement count:5 2024-09-17T11:05:18.293 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:18 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:19.468 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T11:05:19.468 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying crash service with default placement... 2024-09-17T11:05:19.725 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:19 smithi042 ceph-mon[25856]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:19.726 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:19 smithi042 ceph-mon[25856]: Saving service mgr spec with placement count:2 2024-09-17T11:05:19.726 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:19 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:19.726 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:19 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:20.865 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-17T11:05:20.865 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying ceph-exporter service with default placement... 2024-09-17T11:05:21.432 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:21 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:21.433 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:21 smithi042 ceph-mon[25856]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:21.433 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:21 smithi042 ceph-mon[25856]: Saving service crash spec with placement * 2024-09-17T11:05:21.433 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:21 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:22.932 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:22 smithi042 ceph-mon[25856]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:22.932 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:22 smithi042 ceph-mon[25856]: Saving service ceph-exporter spec with placement * 2024-09-17T11:05:22.932 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:22 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:22.932 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:22 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:22.933 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-17T11:05:22.934 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying prometheus service with default placement... 2024-09-17T11:05:24.022 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:23 smithi042 ceph-mon[25856]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:24.022 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:23 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:24.022 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:23 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:24.284 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-17T11:05:24.284 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying grafana service with default placement... 2024-09-17T11:05:24.844 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:24 smithi042 ceph-mon[25856]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:24.844 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:24 smithi042 ceph-mon[25856]: Saving service prometheus spec with placement count:1 2024-09-17T11:05:25.757 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:25 smithi042 ceph-mon[25856]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:26.352 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-17T11:05:26.352 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying node-exporter service with default placement... 2024-09-17T11:05:27.030 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:26 smithi042 ceph-mon[25856]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:27.030 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:26 smithi042 ceph-mon[25856]: Saving service grafana spec with placement count:1 2024-09-17T11:05:27.030 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:26 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:27.591 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-17T11:05:27.592 INFO:teuthology.orchestra.run.smithi042.stdout:Deploying alertmanager service with default placement... 2024-09-17T11:05:27.941 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:27 smithi042 ceph-mon[25856]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:27.941 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:27 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:28.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:28 smithi042 ceph-mon[25856]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:28.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:28 smithi042 ceph-mon[25856]: Saving service node-exporter spec with placement * 2024-09-17T11:05:28.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:28 smithi042 ceph-mon[25856]: from='mgr.14118 172.21.15.42:0/1693393069' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:28.847 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-17T11:05:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:29 smithi042 ceph-mon[25856]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:29 smithi042 ceph-mon[25856]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:29 smithi042 ceph-mon[25856]: Saving service alertmanager spec with placement count:1 2024-09-17T11:05:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:29 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2958011893' entity='client.admin' 2024-09-17T11:05:31.301 INFO:teuthology.orchestra.run.smithi042.stdout:Enabling the dashboard module... 2024-09-17T11:05:32.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:31 smithi042 ceph-mon[25856]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:32.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:31 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/508692937' entity='client.admin' 2024-09-17T11:05:33.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:32 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1337008478' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-17T11:05:34.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:33 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1337008478' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T11:05:34.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:33 smithi042 ceph-mon[25856]: mgrmap e9: smithi042.jxsumf(active, since 30s) 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "active_name": "smithi042.jxsumf", 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for the mgr to restart... 2024-09-17T11:05:34.674 INFO:teuthology.orchestra.run.smithi042.stdout:Waiting for mgr epoch 9... 2024-09-17T11:05:34.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:34 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1916634554' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-17T11:05:38.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: Active manager daemon smithi042.jxsumf restarted 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: Activating manager daemon smithi042.jxsumf 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: mgrmap e10: smithi042.jxsumf(active, starting, since 0.00347294s) 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi042.jxsumf", "id": "smithi042.jxsumf"} : dispatch 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:05:38.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:38 smithi042 ceph-mon[25856]: Manager daemon smithi042.jxsumf is now available 2024-09-17T11:05:39.449 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:39.450 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:05:39.450 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/trash_purge_schedule"} : dispatch 2024-09-17T11:05:39.450 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:39 smithi042 ceph-mon[25856]: mgrmap e11: smithi042.jxsumf(active, since 1.00664s) 2024-09-17T11:05:39.787 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:05:39.787 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-17T11:05:39.787 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T11:05:39.787 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:05:39.788 INFO:teuthology.orchestra.run.smithi042.stdout:mgr epoch 9 is available 2024-09-17T11:05:39.788 INFO:teuthology.orchestra.run.smithi042.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-17T11:05:40.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:40 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:39] ENGINE Bus STARTING 2024-09-17T11:05:40.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:40 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:39] ENGINE Serving on https://172.21.15.42:7150 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:40 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:39] ENGINE Error in HTTPServer.serve 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Traceback (most recent call last): 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._run(expiration_interval) 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:05:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s = self.context.wrap_socket( 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: return self.sslsocket_class._create( 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self.do_handshake() 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._sslobj.do_handshake() 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:40 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:39] ENGINE Serving on http://172.21.15.42:8765 2024-09-17T11:05:40.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:40 smithi042 ceph-mon[25856]: [17/Sep/2024:11:05:39] ENGINE Bus STARTED 2024-09-17T11:05:41.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:41 smithi042 ceph-mon[25856]: mgrmap e12: smithi042.jxsumf(active, since 2s) 2024-09-17T11:05:41.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:41 smithi042 ceph-mon[25856]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:41.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:41 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:42.504 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:42 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:43.168 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUZ772lcFweet9EQ0dNyfO5nqlB1wwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxNzExMDU0MloXDTM0\nMDkxODExMDU0MlowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjQyMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAleL9Sn8BMrtZrG353o9XfrRBxdDyP6/rKASI\nnY8Y/ekx1dxp13508oLjzRf45IaoaXbgkz1REK/X8LKkUCzjvVVHutuJ0UYP8rFM\nmXbaUo2662OtiHTj2MTF8PCo80HDIBPABrOE1ZZNcJGTB9Kqu6Z/OYpnAij6zpqw\n6nEzxp5Fud2KRU50/zTPN8w3xTfFIUGXSLKmruOopFARAawhhTN8P5oeiZTh2MtI\nakZLxWqODmnEZhM7jpu+Xrwwbz/oKcDTbLWPQAUYi471GHOmPWqJQ9/1OmBqyupB\nB0w3eFsc4mX4AnVPB4gKPKKuvYbXz9jAv3i9gRqy7xDQ/3WhE1F+HxlwED+vX7R9\nAuPFX3ygVRfB+PGNtOk3xI+pbD0EzbRvqb3tvBSQFe6XLqkPyYSrqX6b4Up5yWEb\nvxoHPN/FUhPao7eR0dATyaCSDfiOz8WHazReZ5vy951FXX2kK8LfkDUy5R5g8sPq\nX4BQh2X4ip7MXZxWRjCFSLKWkATIxMSZ1r8bP61hvTjEIFmap8gTJSHymIQiHsRG\nWSe4gCZL03agqO+hyZRRwIxO753SBrJmioOWGsNPSF6WjEZt4VK9GyCFzptRL9FD\nrpPsaKhcoKsmdUBaIOOe75710RTobVAWw4D0uC3mOnE6NimnoqEUpcMeQyTwjEE/\nknT/ILcCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDQyghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPKjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQB1\nAutcxZJKknfO3ry5C2/3sFv50tn3OAnYo8c0irdqmL9xfY3PR2pLkqV9YMYLq2+q\nODCb3UXLl5bJjeiaqSWoGiKkhswIgTYOPWzaDcpQOOILGJAhXbULOPh9lS6Gu3I3\n4054VarRWZfyjQdvdeKRJL3SPWPsBaDmyPt2RP921MYUsKZOobh7tswgtrMF0/4A\nYECTGMI+XWweaCwcPm3wIc5Bi/+mJbZd70wDhNZ11vkfMynjWkGCUIIYjNUCRMH6\nXIQvctpwlalpn1Jn+ibGfiCLUypxAym7b98ld7wMpZGImWgoCJmPw+Pshgp3/Hi7\ns7jxrYVW05cJY2Dt3Ti+wtLnzaD608H8FIXaUL3mfkGnbNLr4LPUsv+tQxUbg7w1\nWoXwSB5p0xeeMWkzu5p7msV5u/5jFLUGvGNtaSTLeOmOsPEtdG58Mke/UB3U1Pmu\n8n5McqPkcOWZHiGxy5xJ3oPVaMBN0FczZIeGJd81tO7HDQ2OGuvOdY628jja+85z\noUIP6AG0LjV5JJ1ID5o3K+Noti4odz8I97Fz+BPtRgyBtxIRwgaxrqOPxts3301f\nq2Uh0Ma2qbaNSjYkNnT/GMyAaToO9sy7wb06Ix4PjVod9yKuyN40d6boas5FT+60\nVRsCA2IrZDOLTaLJRtmq3zd7zQ55mFMkAyAtu/xOEg==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEAleL9Sn8BMrtZrG353o9XfrRBxdDyP6/rKASInY8Y/ekx1dxp\n13508oLjzRf45IaoaXbgkz1REK/X8LKkUCzjvVVHutuJ0UYP8rFMmXbaUo2662Ot\niHTj2MTF8PCo80HDIBPABrOE1ZZNcJGTB9Kqu6Z/OYpnAij6zpqw6nEzxp5Fud2K\nRU50/zTPN8w3xTfFIUGXSLKmruOopFARAawhhTN8P5oeiZTh2MtIakZLxWqODmnE\nZhM7jpu+Xrwwbz/oKcDTbLWPQAUYi471GHOmPWqJQ9/1OmBqyupBB0w3eFsc4mX4\nAnVPB4gKPKKuvYbXz9jAv3i9gRqy7xDQ/3WhE1F+HxlwED+vX7R9AuPFX3ygVRfB\n+PGNtOk3xI+pbD0EzbRvqb3tvBSQFe6XLqkPyYSrqX6b4Up5yWEbvxoHPN/FUhPa\no7eR0dATyaCSDfiOz8WHazReZ5vy951FXX2kK8LfkDUy5R5g8sPqX4BQh2X4ip7M\nXZxWRjCFSLKWkATIxMSZ1r8bP61hvTjEIFmap8gTJSHymIQiHsRGWSe4gCZL03ag\nqO+hyZRRwIxO753SBrJmioOWGsNPSF6WjEZt4VK9GyCFzptRL9FDrpPsaKhcoKsm\ndUBaIOOe75710RTobVAWw4D0uC3mOnE6NimnoqEUpcMeQyTwjEE/knT/ILcCAwEA\nAQKCAgAVv2Kq/XSKDN79AtP/c+LpEnR8pE2R6g9/tfCwk8O3i69cbWe6CbIkQdOV\nvYWyestSyhnZo0rw1eLKHNF0hJ7iqM4IkbQUdkr4FrubhMA2vDPD1amnI/avTBXA\nWNrauM78B4GUN1Xtu6ouzCB+QRXetlC9Y5SAnruNYKqMybIOfoZ1amyWk8SsBtiO\nKwZoiigDJEY0GR/QPl4IwUlGadhPQGIlxFHr+nsufohaSyrRUR2df8EsYlwA3B4q\nFrocWjRwYncKzekkC9k83pg3XQhg3uVdwNAPEVBNcuHOkkN2Jhoxy0PJ74Vw/U8m\n7x/VhgwoLzYAUh+E7P/LajA48LNXJmAlh3WmxWax99TeezZ/+pYJYshea+r5ez2t\nil4Pu/cz48435f3HyB5YzBmQDNp5+bAvhE0udvHKWC9L5+iSAosZuPN+in6bTmSu\n/trCPVymoVxRMjZddR9ZR56zfGK6CSXV060KZUZuIZhDyXDJd6p8RjAzvTta/GXw\n/jbkaJopH4vxfFx93nMZcYi+7Hil4687wxLC+nXecPu/lulRBbVcDVf3OYmSnmUc\ngwWkiGSTIxV4g+gE9ctXovnJC7mLxf360BMIJBsJKvqgAQe79Ef9vSYwpNKbJSqz\nY3HKA2a9BSbUsXKtiPXp6XPsDGvnZc0JvSJVnjBk9G45paxoUQKCAQEAx50JsTGx\ntSIyvM6LKNrUVn028B3Nfq8/tOmbf6CQYfB9JtGOz1hKevQgKZurY0eeXxBwyLPE\n3Q9FVxWEmQVEd86c4DGlQBUvYsLGtsngjEPacFozaO34V+JyKI3jL2r44czFCdBX\niZoxKODJba+dQkex0uWuP1WoTrcKKvJcNSXbGOHyMs5g1GmAlZCe3gSJ6cZQ4Mn/\n67Uk5WxrnyOREo/QJyRrwl/4iweCElPqwjlWJ5d0Ki78ZUf1VwteVCq8zsQVirTM\nXAs/hJIA2NJQciWALzbiXaj5oVtmI9RCwV+DLpJ+/KZbCkIG0iVmk9S7XnLyWjlL\nvrdnDLr+mDURbwKCAQEAwDn7cC5DiYQQ7XuF6m8MPKucxfLNkH/RFTTOTszY5MXe\nRQiJCWgWJjEVHxSLy61VAYbWDkW5g1m8VVyCutKynx+mGOTa4FfyAg9di21r2gCZ\nsL1DCKT30846lknuClId9ttO8C/3Bo2JT7MMkFaV+C+0TJoKWPYqSUSwntnlDSMz\n7d0SLCLP9hmYjwE0E5lIo2RK/6TCIT8oXlkeRXDw7xxD2aXYSXoGczwc0hCRhgku\ni7U55yHMZS6CzqV7R3Q8FadRuALqhnoNUioubTlZ7XlTxDkTdshOmQmBZof0U//K\nSQq/HIoM0GnyN+TuKMPAT/I8i4p2NtBA/kP2iKgxOQKCAQA1fl0pklK4YwjL1mIu\nua4r23SMlsAKUja1aeFVK5dl18gCTiiCYnvbRW8VF3WvrnK/sS04bAy23S/M7aRS\nSboWjVU3M7bAXK0NP3t3YtR9YnW4pEOgvB1QmAvV2Ghovbci8/hd7+p1os/Hz63L\nakOvjn0WMp0mtfLb3WupJLgXOiTkHzED8pC6e+eMrWwVvYukDZSBGUEvTqUroomY\n5TQskEPNKZKDTarSv1lZRgnksO7ov0rPPzY+gjE6eX52+dkNZDkNqfQWOqF0CpiV\ngo8yd+BJRuEVDoKPfmn58hlNryX9ph7H4GEHd7hSOtmphloMLqvKCA7Hdmj0XWx7\nJ8WbAoIBABEEkRgLYHtKL912dBKfJiww3T5BEqXaSv5foGwlgoYuZlEiQk+M4Xkc\nG0yXGxE7FS1/bG/zCEtypFPCTuiPQrUHrkLB8AawgoJgLd3sIAI6z2BwQQEA6dfc\niB9KCELtpi12mPR2qp3v5doiddhJchl4z7OAZ64cjP3TkPdfPwH8vdovGi7CHjsh\nZPo0FxItHdspQ+KCCZW766z+oslvCEWC8RbRseY/YVbOWZbXVKrTIUXJE4k82sWS\nao405EcdKTyZhYiO6YhiQc+mYFnXG/kEJsBWdTys2xh9WPFk0+Kj4Jq60tSJ/Dxv\nRLxiDhuZyOrK/UU1SuXrZfWcurS6fzECggEAXTeVIMnLTdDA5U8EiJY2RPOLbPDh\nn4NAT05GE3aeYbuIqOnwVBl3s79z+SnOe1qrnOliefiTRd6zNGPRmYXkP8GOJnB9\n5ecy5NSG+poF6h6UGR5evuz+IktN22bQhH/zysR6QufunRfbGmTAibI4ykNQZiqz\n3zcDj0/yhd+1MFYH7tNNG5Dd3I3vgJxoWZ0CsNXtbc3u9CnLRBt5MQlheL+ums6U\nj7vm0WnBla61quynBxNr74Q3KrASxmRAUYk3M5k16P337vDrp+KsTFUtRIggIlbm\nN2Z6m6cHH87RHj8jrE1TzemD32l9Bpo+GRrWFmZZuRbFnNnEvkx/pAPdcg==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-17T11:05:44.382 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-17T11:05:45.027 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:44 smithi042 ceph-mon[25856]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:45.027 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:44 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:45.629 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-17T11:05:45.630 INFO:teuthology.orchestra.run.smithi042.stdout:Creating initial admin user... 2024-09-17T11:05:46.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:46 smithi042 ceph-mon[25856]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:46.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:46 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:47.052 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$c6trSbIgkJgTbrT/ECLnzuYkDx3F97jNRFdF0fd4lYxS/fUgEiMPi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726571146, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T11:05:47.052 INFO:teuthology.orchestra.run.smithi042.stdout:Fetching dashboard port number... 2024-09-17T11:05:47.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:47 smithi042 ceph-mon[25856]: from='client.14182 -' 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-17T11:05:47.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:47 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:48.251 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T11:05:48.261 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:05:48.261 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout disabled 2024-09-17T11:05:48.269 INFO:teuthology.orchestra.run.smithi042.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:05:48.269 INFO:teuthology.orchestra.run.smithi042.stdout:systemctl: stdout inactive 2024-09-17T11:05:48.269 INFO:teuthology.orchestra.run.smithi042.stdout:firewalld.service is not enabled 2024-09-17T11:05:48.270 INFO:teuthology.orchestra.run.smithi042.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout:Ceph Dashboard is now available at: 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout: URL: https://smithi042.front.sepia.ceph.com:8443/ 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout: User: admin 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout: Password: 435otgfkwv 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:48.272 INFO:teuthology.orchestra.run.smithi042.stdout:Saving cluster configuration to /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config directory 2024-09-17T11:05:48.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:48 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4064197432' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.666 INFO:teuthology.orchestra.run.smithi042.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: ceph telemetry on 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout:For more information see: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:05:49.667 INFO:teuthology.orchestra.run.smithi042.stdout:Bootstrap complete. 2024-09-17T11:05:49.707 INFO:tasks.cephadm:Fetching config... 2024-09-17T11:05:49.708 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:05:49.708 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T11:05:49.725 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T11:05:49.726 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:05:49.726 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T11:05:49.783 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T11:05:49.784 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:05:49.784 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/keyring of=/dev/stdout 2024-09-17T11:05:49.851 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T11:05:49.851 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:05:49.851 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T11:05:49.907 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T11:05:49.908 DEBUG:teuthology.orchestra.run.smithi042:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCol9icfPERWmQZOsRId+lWEmB86KwRwzKgU4qYqijSlD2IeiN6BFTz8gsy8JbXXvrf327Qid8gt1+EbWr0r4pxSdCexiA9HNnIz5jjiKnZyvTg2g0BOAazLMzAOsZo2Cj9LDB4gZ1tGNh/OlbXmWehIfzWqwv3c1HPfs5AwAL5fS+X2f6D3o1UtfEjTusRkwG4STMkOUc0Fyq7N2KgmcgeD71QNt8Ddpp3t8/Ym3vUjPFE+u2XsdCg+Tzmbu89g3newBJsCenTfpj4mAEgBguYgbM6AUdoSTRkARIywn6wMA8QdYofnspEcrQ2xmLcWXDOhIhvi9apjvKJJNsL9Y0maiO6aJFuX9PjejW/DmnOxS76Gi7VkswsU22EWruohMcKBGv/D3pdTk88Jyx2gCnhIKN0S4KyFWSz6HJzcawM+giwLMC3agoftkw8X21tD/YcDjgcJgqg76KMY9Bb3+OqJHpl5qcTZKwyLdR56L4w62d2NI5TIKxeixPEDeuYkas= ceph-82491f84-74e4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T11:05:49.982 INFO:teuthology.orchestra.run.smithi042.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCol9icfPERWmQZOsRId+lWEmB86KwRwzKgU4qYqijSlD2IeiN6BFTz8gsy8JbXXvrf327Qid8gt1+EbWr0r4pxSdCexiA9HNnIz5jjiKnZyvTg2g0BOAazLMzAOsZo2Cj9LDB4gZ1tGNh/OlbXmWehIfzWqwv3c1HPfs5AwAL5fS+X2f6D3o1UtfEjTusRkwG4STMkOUc0Fyq7N2KgmcgeD71QNt8Ddpp3t8/Ym3vUjPFE+u2XsdCg+Tzmbu89g3newBJsCenTfpj4mAEgBguYgbM6AUdoSTRkARIywn6wMA8QdYofnspEcrQ2xmLcWXDOhIhvi9apjvKJJNsL9Y0maiO6aJFuX9PjejW/DmnOxS76Gi7VkswsU22EWruohMcKBGv/D3pdTk88Jyx2gCnhIKN0S4KyFWSz6HJzcawM+giwLMC3agoftkw8X21tD/YcDjgcJgqg76KMY9Bb3+OqJHpl5qcTZKwyLdR56L4w62d2NI5TIKxeixPEDeuYkas= ceph-82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:49.993 DEBUG:teuthology.orchestra.run.smithi181:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCol9icfPERWmQZOsRId+lWEmB86KwRwzKgU4qYqijSlD2IeiN6BFTz8gsy8JbXXvrf327Qid8gt1+EbWr0r4pxSdCexiA9HNnIz5jjiKnZyvTg2g0BOAazLMzAOsZo2Cj9LDB4gZ1tGNh/OlbXmWehIfzWqwv3c1HPfs5AwAL5fS+X2f6D3o1UtfEjTusRkwG4STMkOUc0Fyq7N2KgmcgeD71QNt8Ddpp3t8/Ym3vUjPFE+u2XsdCg+Tzmbu89g3newBJsCenTfpj4mAEgBguYgbM6AUdoSTRkARIywn6wMA8QdYofnspEcrQ2xmLcWXDOhIhvi9apjvKJJNsL9Y0maiO6aJFuX9PjejW/DmnOxS76Gi7VkswsU22EWruohMcKBGv/D3pdTk88Jyx2gCnhIKN0S4KyFWSz6HJzcawM+giwLMC3agoftkw8X21tD/YcDjgcJgqg76KMY9Bb3+OqJHpl5qcTZKwyLdR56L4w62d2NI5TIKxeixPEDeuYkas= ceph-82491f84-74e4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T11:05:50.118 INFO:teuthology.orchestra.run.smithi181.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCol9icfPERWmQZOsRId+lWEmB86KwRwzKgU4qYqijSlD2IeiN6BFTz8gsy8JbXXvrf327Qid8gt1+EbWr0r4pxSdCexiA9HNnIz5jjiKnZyvTg2g0BOAazLMzAOsZo2Cj9LDB4gZ1tGNh/OlbXmWehIfzWqwv3c1HPfs5AwAL5fS+X2f6D3o1UtfEjTusRkwG4STMkOUc0Fyq7N2KgmcgeD71QNt8Ddpp3t8/Ym3vUjPFE+u2XsdCg+Tzmbu89g3newBJsCenTfpj4mAEgBguYgbM6AUdoSTRkARIywn6wMA8QdYofnspEcrQ2xmLcWXDOhIhvi9apjvKJJNsL9Y0maiO6aJFuX9PjejW/DmnOxS76Gi7VkswsU22EWruohMcKBGv/D3pdTk88Jyx2gCnhIKN0S4KyFWSz6HJzcawM+giwLMC3agoftkw8X21tD/YcDjgcJgqg76KMY9Bb3+OqJHpl5qcTZKwyLdR56L4w62d2NI5TIKxeixPEDeuYkas= ceph-82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:50.132 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T11:05:50.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:50 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/510247949' entity='client.admin' 2024-09-17T11:05:50.384 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:05:51.764 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T11:05:51.765 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T11:05:52.203 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:05:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:52 smithi042 ceph-mon[25856]: mgrmap e13: smithi042.jxsumf(active, since 12s) 2024-09-17T11:05:52.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:52 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/863070558' entity='client.admin' 2024-09-17T11:05:53.525 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi181 2024-09-17T11:05:53.525 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:05:53.525 DEBUG:teuthology.orchestra.run.smithi181:> dd of=/etc/ceph/ceph.conf 2024-09-17T11:05:53.545 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:05:53.545 DEBUG:teuthology.orchestra.run.smithi181:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:05:53.603 INFO:tasks.cephadm:Adding host smithi181 to orchestrator... 2024-09-17T11:05:53.603 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch host add smithi181 2024-09-17T11:05:53.864 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:05:54.131 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:53 smithi042 ceph-mon[25856]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:54.131 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:53 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:55.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:54 smithi042 ceph-mon[25856]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd/host:smithi042", "name": "osd_memory_target"} : dispatch 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Updating smithi042:/etc/ceph/ceph.conf 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Updating smithi042:/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T11:05:56.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi042", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi042", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Deploying daemon ceph-exporter.smithi042 on smithi042 2024-09-17T11:05:56.323 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:56 smithi042 ceph-mon[25856]: Deploying cephadm binary to smithi181 2024-09-17T11:05:58.448 INFO:teuthology.orchestra.run.smithi042.stdout:Added host 'smithi181' with addr '172.21.15.181' 2024-09-17T11:05:59.253 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi042", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi042", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: Deploying daemon crash.smithi042 on smithi042 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: Added host smithi181 2024-09-17T11:05:59.254 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:05:59 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:05:59.518 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T11:06:00.000 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:06:00.825 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:06:00.825 INFO:teuthology.orchestra.run.smithi042.stdout:[{"addr": "172.21.15.42", "hostname": "smithi042", "labels": [], "status": ""}, {"addr": "172.21.15.181", "hostname": "smithi181", "labels": [], "status": ""}] 2024-09-17T11:06:01.493 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:01 smithi042 ceph-mon[25856]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:01.493 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:01 smithi042 ceph-mon[25856]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:06:01.799 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T11:06:01.800 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T11:06:02.061 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:06:02.489 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:02 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:02.489 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:02 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:02.489 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:02 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:02.489 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:02 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:02.490 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:02 smithi042 ceph-mon[25856]: Deploying daemon node-exporter.smithi042 on smithi042 2024-09-17T11:06:03.345 INFO:teuthology.orchestra.run.smithi042.stderr:adjusted tunables profile to default 2024-09-17T11:06:03.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:03 smithi042 ceph-mon[25856]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:03.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:03 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3689471959' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-17T11:06:04.754 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3689471959' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T11:06:04.754 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:04 smithi042 ceph-mon[25856]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T11:06:04.754 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:04 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:04.826 INFO:tasks.cephadm:Adding mon.smithi042 on smithi042 2024-09-17T11:06:04.826 INFO:tasks.cephadm:Adding mon.smithi181 on smithi181 2024-09-17T11:06:04.826 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch apply mon '2;smithi042:172.21.15.42=smithi042;smithi181:172.21.15.181=smithi181' 2024-09-17T11:06:05.088 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:05.131 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:05.740 INFO:teuthology.orchestra.run.smithi181.stdout:Scheduled mon update... 2024-09-17T11:06:05.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:05 smithi042 ceph-mon[25856]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:06.319 DEBUG:teuthology.orchestra.run.smithi181:mon.smithi181> sudo journalctl -f -n 0 -u ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi181.service 2024-09-17T11:06:06.322 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:06.322 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:06.609 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:06.652 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:06.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: Deploying daemon alertmanager.smithi042 on smithi042 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi042:172.21.15.42=smithi042;smithi181:172.21.15.181=smithi181", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: Saving service mon spec with placement smithi042:172.21.15.42=smithi042;smithi181:172.21.15.181=smithi181;count:2 2024-09-17T11:06:06.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:06 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:07.332 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:07.332 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:07.332 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:08.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:07 smithi042 ceph-mon[25856]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:08.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:07 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2640222924' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:08.912 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:08.912 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:09.153 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:09.196 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:09.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:09 smithi042 ceph-mon[25856]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:09.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:09 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:10.090 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:10.090 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:10.090 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:10.727 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:10 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2643688139' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:11 smithi042 ceph-mon[25856]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:11.698 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:11.699 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:11.939 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:11.982 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:12.657 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:12.658 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:12.658 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:13 smithi042 ceph-mon[25856]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:13 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3353642501' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:14.253 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:14.254 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:14.496 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:14.539 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:15.193 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:15.194 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:15.194 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:15.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:15.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:15.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:15.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:15.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T11:06:15.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:14 smithi042 ceph-mon[25856]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:16.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/36444642' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:16.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:16.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:16 smithi042 ceph-mon[25856]: Deploying daemon grafana.smithi042 on smithi042 2024-09-17T11:06:16.776 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:16.777 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:17.020 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:17.073 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:17.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:17 smithi042 ceph-mon[25856]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:17.734 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:17.734 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:17.734 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:18.237 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:18 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3958498000' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:19.435 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:19.435 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:19.676 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:19.720 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:19.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:19 smithi042 ceph-mon[25856]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:19.825 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:19 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:20.356 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:20.356 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:20.356 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:20.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:20 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/1015933057' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:21.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:21 smithi042 ceph-mon[25856]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:21.972 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:21.972 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:22.203 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:22.246 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:22.958 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:22.958 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:22.958 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:23.720 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:23 smithi042 ceph-mon[25856]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:23.720 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:23 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2572592520' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:24.518 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:24.519 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:24.760 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:24.804 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:25.426 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:25.426 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:25.426 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:25.664 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:25 smithi042 ceph-mon[25856]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:25.664 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:25 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/991575804' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:27.005 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:27.005 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:27.054 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.054 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.054 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.055 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.055 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.055 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.055 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.055 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:26 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:27.247 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:27.291 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:27.995 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:27.995 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:27.995 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:28.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:27 smithi042 ceph-mon[25856]: Deploying daemon prometheus.smithi042 on smithi042 2024-09-17T11:06:28.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:27 smithi042 ceph-mon[25856]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:29.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3240375402' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:29.183 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:28 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:29.640 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:29.640 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:29.882 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:29.925 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:30.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:29 smithi042 ceph-mon[25856]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:30.614 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:30.614 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:30.615 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:31.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:30 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3898709589' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:32.218 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:32.218 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:32.311 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:31 smithi042 ceph-mon[25856]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:32.449 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:32.492 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:33.175 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:33.175 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:33.176 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:33.950 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:33 smithi042 ceph-mon[25856]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:33.950 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:33 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2669499243' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:34.741 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:34.741 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:34.984 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:35.027 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:35.684 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:35.685 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:35.685 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:36.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:35 smithi042 ceph-mon[25856]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:36.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:35 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/1525253581' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:37.297 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:37.297 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:37.535 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:37.577 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:38.253 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:38.253 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:38.253 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:38.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:37 smithi042 ceph-mon[25856]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:39.091 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:38 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/1541480383' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:39.818 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:39.819 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:40.060 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:40.117 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:40.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:39 smithi042 ceph-mon[25856]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:40.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:40.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:40.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:40.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:39 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-17T11:06:40.760 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:40.760 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:40.760 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:42.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:41 smithi042 ceph-mon[25856]: from='mgr.14164 172.21.15.42:0/545900901' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T11:06:42.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:41 smithi042 ceph-mon[25856]: mgrmap e14: smithi042.jxsumf(active, since 62s) 2024-09-17T11:06:42.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:41 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/1605338132' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:42.384 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:42.384 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:42.627 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:42.670 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:43.338 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:43.338 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:43.338 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:43.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:43 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/4253586620' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:44.958 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:44.959 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:45.200 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:45.244 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:45.874 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:45.874 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:45.875 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:46.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2857917209' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:46.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: Active manager daemon smithi042.jxsumf restarted 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: Activating manager daemon smithi042.jxsumf 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: mgrmap e15: smithi042.jxsumf(active, starting, since 0.00313122s) 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi042.jxsumf", "id": "smithi042.jxsumf"} : dispatch 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:06:46.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:45 smithi042 ceph-mon[25856]: Manager daemon smithi042.jxsumf is now available 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi042.jxsumf/trash_purge_schedule"} : dispatch 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:47.196 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:46 smithi042 ceph-mon[25856]: mgrmap e16: smithi042.jxsumf(active, since 1.00664s) 2024-09-17T11:06:47.436 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:47.436 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:47.676 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:47.722 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:48.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:48 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:48.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:48.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:48.500 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:48.500 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:48.500 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:49.567 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: [17/Sep/2024:11:06:48] ENGINE Bus STARTING 2024-09-17T11:06:49.567 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: [17/Sep/2024:11:06:48] ENGINE Serving on https://172.21.15.42:7150 2024-09-17T11:06:49.567 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: [17/Sep/2024:11:06:48] ENGINE Error in HTTPServer.serve 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: Traceback (most recent call last): 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._run(expiration_interval) 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: s = self.context.wrap_socket( 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:06:49.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: return self.sslsocket_class._create( 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self.do_handshake() 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: self._sslobj.do_handshake() 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: [17/Sep/2024:11:06:48] ENGINE Serving on http://172.21.15.42:8765 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: [17/Sep/2024:11:06:48] ENGINE Bus STARTED 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/665850316' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:49.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:49 smithi042 ceph-mon[25856]: mgrmap e17: smithi042.jxsumf(active, since 2s) 2024-09-17T11:06:50.138 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:50.139 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:50.472 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:50.523 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:06:51.288 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:51.288 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:51.288 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:52.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:52.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:52.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:52.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:52.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd/host:smithi042", "name": "osd_memory_target"} : dispatch 2024-09-17T11:06:52.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:51 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/934658893' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd/host:smithi181", "name": "osd_memory_target"} : dispatch 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi042:/etc/ceph/ceph.conf 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi181:/etc/ceph/ceph.conf 2024-09-17T11:06:53.049 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi181:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi181:/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi042:/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi181:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi181", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi181", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T11:06:53.050 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:53.051 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:52 smithi042 ceph-mon[25856]: Deploying daemon ceph-exporter.smithi181 on smithi181 2024-09-17T11:06:53.457 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:53.458 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:53.707 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:54.694 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:54.694 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:54.694 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:55.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:54 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3412863723' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:06:56.330 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:06:56.331 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:06:57.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:57.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi181", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi181", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: Deploying daemon crash.smithi181 on smithi181 2024-09-17T11:06:57.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:06:57.321 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:58.157 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:06:58.158 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:06:58.158 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:06:58.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:58 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2822201911' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:00.062 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:07:00.063 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:07:00.069 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:00.069 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:00.069 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:00.069 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:00.069 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:06:59 smithi042 ceph-mon[25856]: Deploying daemon node-exporter.smithi181 on smithi181 2024-09-17T11:07:00.307 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:01.169 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:07:01.169 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:07:01.169 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:07:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:01 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2214491815' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:02.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:02 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:02.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:02 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:03.386 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:07:03.386 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:07:03.810 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:04.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:04.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:04.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:04.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:03 smithi042 ceph-mon[25856]: Deploying daemon mgr.smithi181.zcjreb on smithi181 2024-09-17T11:07:05.107 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:07:05.107 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:07:05.108 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:07:05.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:05 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2724558989' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:06.827 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:07:06.827 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:07:07.078 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:07.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: Deploying daemon mon.smithi181 on smithi181 2024-09-17T11:07:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:08.858 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:07:08.858 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":1,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:04:25.826680Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:07:08.858 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 1 2024-09-17T11:07:09.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:09 smithi042 ceph-mon[25856]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:09.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:09 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/4204169698' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:09.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:09 smithi181 systemd[1]: Starting Ceph mon.smithi181 for 82491f84-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:07:10.162 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 podman[34134]: 2024-09-17 11:07:10.033298599 +0000 UTC m=+0.016060610 image pull 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb 2024-09-17T11:07:10.162 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 podman[34134]: 2024-09-17 11:07:10.161246423 +0000 UTC m=+0.144008412 container create 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, RELEASE=main-7498493, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.37.2) 2024-09-17T11:07:10.424 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 podman[34134]: 2024-09-17 11:07:10.397365255 +0000 UTC m=+0.380127255 container init 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, org.label-schema.build-date=20240731, RELEASE=main-7498493, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True) 2024-09-17T11:07:10.424 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 podman[34134]: 2024-09-17 11:07:10.402188346 +0000 UTC m=+0.384950336 container start 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, RELEASE=main-7498493, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux ) 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev), process ceph-mon, pid 7 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: pidfile_write: ignore empty --pid-file 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: load: jerasure load: lrc 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: RocksDB version: 7.9.2 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Git sha 0 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Compile date 2024-09-15 20:52:36 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: DB SUMMARY 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: DB Session ID: NTXDTVYO0DWHNN1YLVXR 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: CURRENT file: CURRENT 2024-09-17T11:07:10.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi181/store.db dir, Total Num: 0, files: 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi181/store.db: 000004.log size: 511 ; 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.error_if_exists: 0 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.create_if_missing: 0 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.paranoid_checks: 1 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.env: 0x556444438120 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.info_log: 0x55644561f8e0 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T11:07:10.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.statistics: (nil) 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.use_fsync: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_log_file_size: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_fallocate: 1 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.use_direct_reads: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T11:07:10.687 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.db_log_dir: 2024-09-17T11:07:10.688 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.wal_dir: 2024-09-17T11:07:10.688 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T11:07:10.689 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T11:07:10.689 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T11:07:10.689 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T11:07:10.689 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.write_buffer_manager: 0x556445623b80 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T11:07:10.690 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.unordered_write: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.row_cache: None 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.wal_filter: None 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.two_write_queues: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.wal_compression: 0 2024-09-17T11:07:10.691 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.atomic_flush: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.log_readahead_size: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_background_jobs: 2 2024-09-17T11:07:10.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_background_compactions: -1 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_subcompactions: 1 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_open_files: -1 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T11:07:10.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_background_flushes: -1 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Compression algorithms supported: 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kZSTD supported: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kXpressCompression supported: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kBZip2Compression supported: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kLZ4Compression supported: 1 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kZlibCompression supported: 1 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: kSnappyCompression supported: 1 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T11:07:10.694 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi181/store.db/MANIFEST-000005 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.merge_operator: 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_filter: None 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55644561f540) 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: cache_index_and_filter_blocks: 1 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T11:07:10.695 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: pin_top_level_index_and_filter: 1 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: index_type: 0 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: data_block_index_type: 0 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: index_shortening: 1 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: checksum: 4 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: no_block_cache: 0 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_cache: 0x556445613610 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_cache_name: BinnedLRUCache 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_cache_options: 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: capacity : 536870912 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: num_shard_bits : 4 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: strict_capacity_limit : 0 2024-09-17T11:07:10.696 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: high_pri_pool_ratio: 0.000 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_cache_compressed: (nil) 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: persistent_cache: (nil) 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_size: 4096 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_size_deviation: 10 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_restart_interval: 16 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: index_block_restart_interval: 1 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: metadata_block_size: 4096 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: partition_filters: 0 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: use_delta_encoding: 1 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: filter_policy: bloomfilter 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: whole_key_filtering: 1 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: verify_compression: 0 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: read_amp_bytes_per_bit: 0 2024-09-17T11:07:10.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: format_version: 5 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: enable_index_compression: 1 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: block_align: 0 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: max_auto_readahead_size: 262144 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: prepopulate_block_cache: 0 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: initial_auto_readahead_size: 8192 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression: NoCompression 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T11:07:10.698 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.num_levels: 7 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:07:10.699 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T11:07:10.700 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T11:07:10.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T11:07:10.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.inplace_update_support: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.bloom_locality: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.max_successive_merges: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T11:07:10.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.ttl: 2592000 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enable_blob_files: false 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.min_blob_size: 0 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T11:07:10.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi181/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-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: d46b0349-d263-4fae-b5f2-0cafc1890957 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571230429266, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571230429694, "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": 1726571230, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "d46b0349-d263-4fae-b5f2-0cafc1890957", "db_session_id": "NTXDTVYO0DWHNN1YLVXR", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571230429792, "job": 1, "event": "recovery_finished"} 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi181/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x556445642e00 2024-09-17T11:07:10.705 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: DB pointer 0x556445744000 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: ** DB Stats ** 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: ** Compaction Stats [default] ** 2024-09-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.706 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: ** Compaction Stats [default] ** 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T11:07:10.707 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: Block cache BinnedLRUCache@0x556445613610#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-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.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-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181 does not exist in monmap, will attempt to join an existing cluster 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: using public_addr v2:172.21.15.181:0/0 -> [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] 2024-09-17T11:07:10.708 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: starting mon.smithi181 rank -1 at public addrs [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] at bind addrs [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi181 fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(???) e0 preinit fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).mds e1 new map 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).mds e1 print_map 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: e1 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: btime 2024-09-17T11:04:30:967777+0000 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: legacy client fscid: -1 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout: No filesystems configured 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-17T11:07:10.709 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.710 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: Deploying daemon mgr.smithi181.zcjreb on smithi181 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2724558989' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.711 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: Deploying daemon mon.smithi181 on smithi181 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/4204169698' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 ceph-mon[34172]: mon.smithi181@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 bash[34134]: 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 2024-09-17T11:07:10.712 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:10 smithi181 systemd[1]: Started Ceph mon.smithi181 for 82491f84-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:07:10.916 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:07:10.916 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:07:11.167 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi181/config 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: mon.smithi042 calling monitor election 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi181.zcjreb/crt"} : dispatch 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: mon.smithi181 calling monitor election 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: mon.smithi042 is new leader, mons smithi042,smithi181 in quorum (ranks 0,1) 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: monmap epoch 2 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: last_changed 2024-09-17T11:07:10.459440+0000 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: created 2024-09-17T11:04:25.826680+0000 2024-09-17T11:07:15.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: min_mon_release 19 (squid) 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: election_strategy: 1 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: 0: [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] mon.smithi042 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: 1: [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] mon.smithi181 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: fsmap 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: mgrmap e17: smithi042.jxsumf(active, since 29s) 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: overall HEALTH_OK 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: Standby manager daemon smithi181.zcjreb started 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi181.zcjreb/key"} : dispatch 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.824 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-17T11:07:15.825 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.825 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.825 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:15 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:07:15.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: mon.smithi042 calling monitor election 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi181.zcjreb/crt"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: mon.smithi181 calling monitor election 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: mon.smithi042 is new leader, mons smithi042,smithi181 in quorum (ranks 0,1) 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: monmap epoch 2 2024-09-17T11:07:15.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: last_changed 2024-09-17T11:07:10.459440+0000 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: created 2024-09-17T11:04:25.826680+0000 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: min_mon_release 19 (squid) 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: election_strategy: 1 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: 0: [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] mon.smithi042 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: 1: [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] mon.smithi181 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: fsmap 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: mgrmap e17: smithi042.jxsumf(active, since 29s) 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: overall HEALTH_OK 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: Standby manager daemon smithi181.zcjreb started 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi181.zcjreb/key"} : dispatch 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.? 172.21.15.181:0/3206900631' entity='mgr.smithi181.zcjreb' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:15.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:15 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:16.244 INFO:teuthology.orchestra.run.smithi181.stdout: 2024-09-17T11:07:16.245 INFO:teuthology.orchestra.run.smithi181.stdout:{"epoch":2,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:07:10.459440Z","created":"2024-09-17T11:04:25.826680Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi042","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:3300","nonce":0},{"type":"v1","addr":"172.21.15.42:6789","nonce":0}]},"addr":"172.21.15.42:6789/0","public_addr":"172.21.15.42:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi181","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:3300","nonce":0},{"type":"v1","addr":"172.21.15.181:6789","nonce":0}]},"addr":"172.21.15.181:6789/0","public_addr":"172.21.15.181:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T11:07:16.245 INFO:teuthology.orchestra.run.smithi181.stderr:dumped monmap epoch 2 2024-09-17T11:07:16.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: mgrmap e18: smithi042.jxsumf(active, since 29s), standbys: smithi181.zcjreb 2024-09-17T11:07:16.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi181.zcjreb", "id": "smithi181.zcjreb"} : dispatch 2024-09-17T11:07:16.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:16.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/784462199' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:16.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:16.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:16.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: mgrmap e18: smithi042.jxsumf(active, since 29s), standbys: smithi181.zcjreb 2024-09-17T11:07:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr metadata", "who": "smithi181.zcjreb", "id": "smithi181.zcjreb"} : dispatch 2024-09-17T11:07:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/784462199' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:07:16.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:16.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:16.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:07:17.035 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T11:07:17.036 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T11:07:17.304 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:17.746 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:17 smithi042 ceph-mon[25856]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:17.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:17 smithi181 ceph-mon[34172]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:17.947 INFO:teuthology.orchestra.run.smithi042.stdout:# minimal ceph.conf for 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:17.947 INFO:teuthology.orchestra.run.smithi042.stdout:[global] 2024-09-17T11:07:17.947 INFO:teuthology.orchestra.run.smithi042.stdout: fsid = 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:07:17.947 INFO:teuthology.orchestra.run.smithi042.stdout: mon_host = [v2:172.21.15.42:3300/0,v1:172.21.15.42:6789/0] [v2:172.21.15.181:3300/0,v1:172.21.15.181:6789/0] 2024-09-17T11:07:18.689 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T11:07:18.689 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:07:18.689 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T11:07:18.718 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:07:18.718 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:07:18.785 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:07:18.785 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T11:07:18.812 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:07:18.812 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:07:18.877 DEBUG:tasks.cephadm:set 0 configs 2024-09-17T11:07:18.877 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T11:07:18.877 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:07:18.878 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:07:18.894 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:07:18.894 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/nvme4n1 2024-09-17T11:07:18.951 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/nvme4n1 2024-09-17T11:07:18.951 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:05:54.040081720 +0000 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:43.997282710 +0000 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:43.997282710 +0000 2024-09-17T11:07:18.952 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:43.997282710 +0000 2024-09-17T11:07:18.952 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T11:07:19.001 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Updating smithi042:/etc/ceph/ceph.conf 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Updating smithi181:/etc/ceph/ceph.conf 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Updating smithi181:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/990944580' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.002 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Reconfiguring mon.smithi042 (unknown last config time)... 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:18 smithi042 ceph-mon[25856]: Reconfiguring daemon mon.smithi042 on smithi042 2024-09-17T11:07:19.031 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:07:19.031 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:07:19.031 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000135473 s, 3.8 MB/s 2024-09-17T11:07:19.032 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T11:07:19.091 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/nvme3n1 2024-09-17T11:07:19.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Updating smithi042:/etc/ceph/ceph.conf 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Updating smithi181:/etc/ceph/ceph.conf 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Updating smithi181:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Updating smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/990944580' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Reconfiguring mon.smithi042 (unknown last config time)... 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:19.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:18 smithi181 ceph-mon[34172]: Reconfiguring daemon mon.smithi042 on smithi042 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/nvme3n1 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 1027 Links: 1 Device type: 103,6 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:05:54.032081793 +0000 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:43.851284059 +0000 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:43.851284059 +0000 2024-09-17T11:07:19.147 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:43.848284086 +0000 2024-09-17T11:07:19.148 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T11:07:19.214 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:07:19.214 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:07:19.214 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000126308 s, 4.1 MB/s 2024-09-17T11:07:19.215 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T11:07:19.272 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/nvme2n1 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/nvme2n1 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:05:54.024081866 +0000 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:43.707285389 +0000 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:43.707285389 +0000 2024-09-17T11:07:19.329 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:43.705285407 +0000 2024-09-17T11:07:19.330 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T11:07:19.393 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:07:19.393 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:07:19.393 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000134149 s, 3.8 MB/s 2024-09-17T11:07:19.395 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T11:07:19.452 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/nvme1n1 2024-09-17T11:07:19.508 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/nvme1n1 2024-09-17T11:07:19.508 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:19.508 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T11:07:19.508 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:19.509 INFO:teuthology.orchestra.run.smithi042.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:19.509 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-09-17 11:05:54.015081949 +0000 2024-09-17T11:07:19.509 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-09-17 11:03:43.564286710 +0000 2024-09-17T11:07:19.509 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-09-17 11:03:43.564286710 +0000 2024-09-17T11:07:19.509 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: 2024-09-17 11:03:43.561286737 +0000 2024-09-17T11:07:19.509 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T11:07:19.573 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-09-17T11:07:19.573 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-09-17T11:07:19.573 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000117219 s, 4.4 MB/s 2024-09-17T11:07:19.574 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T11:07:19.632 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:07:19.632 DEBUG:teuthology.orchestra.run.smithi181:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:07:19.649 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:07:19.649 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/nvme4n1 2024-09-17T11:07:19.706 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/nvme4n1 2024-09-17T11:07:19.706 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:06:50.767218113 +0000 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:45.606960208 +0000 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:45.606960208 +0000 2024-09-17T11:07:19.707 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:45.601960309 +0000 2024-09-17T11:07:19.707 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T11:07:19.771 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:07:19.771 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:07:19.772 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000211648 s, 2.4 MB/s 2024-09-17T11:07:19.773 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T11:07:19.829 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/nvme3n1 2024-09-17T11:07:19.888 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/nvme3n1 2024-09-17T11:07:19.888 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:19.888 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 1027 Links: 1 Device type: 103,6 2024-09-17T11:07:19.888 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:19.888 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:19.889 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:06:50.757218316 +0000 2024-09-17T11:07:19.889 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:45.465963057 +0000 2024-09-17T11:07:19.889 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:45.465963057 +0000 2024-09-17T11:07:19.889 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:45.460963158 +0000 2024-09-17T11:07:19.889 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T11:07:19.952 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:07:19.952 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:07:19.952 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000189413 s, 2.7 MB/s 2024-09-17T11:07:19.954 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T11:07:20.010 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/nvme2n1 2024-09-17T11:07:20.066 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/nvme2n1 2024-09-17T11:07:20.066 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:20.066 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 1015 Links: 1 Device type: 103,4 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:06:50.747218518 +0000 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:45.325965887 +0000 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:45.325965887 +0000 2024-09-17T11:07:20.067 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:45.319966008 +0000 2024-09-17T11:07:20.067 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T11:07:20.129 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:07:20.129 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:07:20.129 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000217062 s, 2.4 MB/s 2024-09-17T11:07:20.130 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T11:07:20.187 DEBUG:teuthology.orchestra.run.smithi181:> stat /dev/nvme1n1 2024-09-17T11:07:20.242 INFO:teuthology.orchestra.run.smithi181.stdout: File: /dev/nvme1n1 2024-09-17T11:07:20.242 INFO:teuthology.orchestra.run.smithi181.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Access: 2024-09-17 11:06:50.736218740 +0000 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Modify: 2024-09-17 11:03:45.179968837 +0000 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout:Change: 2024-09-17 11:03:45.179968837 +0000 2024-09-17T11:07:20.243 INFO:teuthology.orchestra.run.smithi181.stdout: Birth: 2024-09-17 11:03:45.175968918 +0000 2024-09-17T11:07:20.243 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T11:07:20.306 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records in 2024-09-17T11:07:20.306 INFO:teuthology.orchestra.run.smithi181.stderr:1+0 records out 2024-09-17T11:07:20.306 INFO:teuthology.orchestra.run.smithi181.stderr:512 bytes copied, 0.000226569 s, 2.3 MB/s 2024-09-17T11:07:20.307 DEBUG:teuthology.orchestra.run.smithi181:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T11:07:20.364 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-17T11:07:20.655 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi181/config 2024-09-17T11:07:20.949 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:20.949 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:20.949 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:20.949 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: Reconfiguring mgr.smithi042.jxsumf (unknown last config time)... 2024-09-17T11:07:20.949 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi042.jxsumf", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:20.950 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:20.950 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:20.950 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:20 smithi181 ceph-mon[34172]: Reconfiguring daemon mgr.smithi042.jxsumf on smithi042 2024-09-17T11:07:21.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:21.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:21.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:21.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: Reconfiguring mgr.smithi042.jxsumf (unknown last config time)... 2024-09-17T11:07:21.258 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi042.jxsumf", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:21.259 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:21.259 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:21.259 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:20 smithi042 ceph-mon[25856]: Reconfiguring daemon mgr.smithi042.jxsumf on smithi042 2024-09-17T11:07:21.365 INFO:teuthology.orchestra.run.smithi181.stdout:Scheduled osd.all-available-devices update... 2024-09-17T11:07:22.011 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-17T11:07:22.012 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:22.263 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:22.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: Reconfiguring ceph-exporter.smithi042 (monmap changed)... 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi042", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: Reconfiguring daemon ceph-exporter.smithi042 on smithi042 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: Marking host: smithi042 for OSDSpec preview refresh. 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: Marking host: smithi181 for OSDSpec preview refresh. 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: Saving service osd.all-available-devices spec with placement * 2024-09-17T11:07:22.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:22 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:22.647 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:22.647 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:22.647 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: Reconfiguring ceph-exporter.smithi042 (monmap changed)... 2024-09-17T11:07:22.647 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi042", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: Reconfiguring daemon ceph-exporter.smithi042 on smithi042 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: Marking host: smithi042 for OSDSpec preview refresh. 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: Marking host: smithi181 for OSDSpec preview refresh. 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: Saving service osd.all-available-devices spec with placement * 2024-09-17T11:07:22.648 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:22 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:23.336 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:24.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:24.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:24.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:24.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: Reconfiguring crash.smithi042 (monmap changed)... 2024-09-17T11:07:24.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi042", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:07:24.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:24.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: Reconfiguring daemon crash.smithi042 on smithi042 2024-09-17T11:07:24.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:23 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2082357542' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:24.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:24.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: Reconfiguring crash.smithi042 (monmap changed)... 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi042", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: Reconfiguring daemon crash.smithi042 on smithi042 2024-09-17T11:07:24.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:23 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2082357542' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:24.374 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:25.375 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:25.842 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:25 smithi042 ceph-mon[25856]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:25.843 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:25 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:25.843 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:25 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:25.843 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:25 smithi042 ceph-mon[25856]: Reconfiguring alertmanager.smithi042 (dependencies changed)... 2024-09-17T11:07:25.843 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:25 smithi042 ceph-mon[25856]: Reconfiguring daemon alertmanager.smithi042 on smithi042 2024-09-17T11:07:26.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:25 smithi181 ceph-mon[34172]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:26.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:25 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:26.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:25 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:26.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:25 smithi181 ceph-mon[34172]: Reconfiguring alertmanager.smithi042 (dependencies changed)... 2024-09-17T11:07:26.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:25 smithi181 ceph-mon[34172]: Reconfiguring daemon alertmanager.smithi042 on smithi042 2024-09-17T11:07:26.962 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:27.541 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:27.983 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:27 smithi042 ceph-mon[25856]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:27.983 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:27 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1029345125' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:28.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:27 smithi181 ceph-mon[34172]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:28.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:27 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1029345125' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:28.526 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:29.527 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:29.812 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:29 smithi042 ceph-mon[25856]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:30.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:29 smithi181 ceph-mon[34172]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:30.378 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:31.098 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:31.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:31.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:31.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:31.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: Reconfiguring grafana.smithi042 (dependencies changed)... 2024-09-17T11:07:31.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2520297033' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:31.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:31.660 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:31.660 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:31.660 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:31.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: Reconfiguring grafana.smithi042 (dependencies changed)... 2024-09-17T11:07:31.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2520297033' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:31.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:31.999 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:32.566 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:32 smithi042 ceph-mon[25856]: Reconfiguring daemon grafana.smithi042 on smithi042 2024-09-17T11:07:32.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:32 smithi181 ceph-mon[34172]: Reconfiguring daemon grafana.smithi042 on smithi042 2024-09-17T11:07:33.000 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:33.663 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:33 smithi042 ceph-mon[25856]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:33.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:33 smithi181 ceph-mon[34172]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:33.955 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:34.599 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:35 smithi042 ceph-mon[25856]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:35 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2977739498' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:35.685 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:35 smithi181 ceph-mon[34172]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:35.686 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:35 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2977739498' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:35.887 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:36.889 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:37.173 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:37 smithi042 ceph-mon[25856]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:37 smithi042 ceph-mon[25856]: Reconfiguring prometheus.smithi042 (dependencies changed)... 2024-09-17T11:07:37.924 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:38.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:37 smithi181 ceph-mon[34172]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:38.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:38.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:38.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:37 smithi181 ceph-mon[34172]: Reconfiguring prometheus.smithi042 (dependencies changed)... 2024-09-17T11:07:38.781 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:38 smithi042 ceph-mon[25856]: Reconfiguring daemon prometheus.smithi042 on smithi042 2024-09-17T11:07:38.781 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:38 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2620146043' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:39.088 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:39.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:38 smithi181 ceph-mon[34172]: Reconfiguring daemon prometheus.smithi042 on smithi042 2024-09-17T11:07:39.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:38 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2620146043' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:39.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:39 smithi042 ceph-mon[25856]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:40.089 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:40.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:39 smithi181 ceph-mon[34172]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:40.968 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:41.700 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:41.989 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:41 smithi042 ceph-mon[25856]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:42.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:41 smithi181 ceph-mon[34172]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:42.809 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:42 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1327194450' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:42.838 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:43.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:42 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1327194450' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:43.839 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:44.002 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:43 smithi181 ceph-mon[34172]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:44.003 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:44.003 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:44.003 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi181", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:07:44.003 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:44.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:43 smithi042 ceph-mon[25856]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:44.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:44.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:44.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi181", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:07:44.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:44.099 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:44.748 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:44.748 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:44 smithi042 ceph-mon[25856]: Reconfiguring ceph-exporter.smithi181 (monmap changed)... 2024-09-17T11:07:44.748 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:44 smithi042 ceph-mon[25856]: Reconfiguring daemon ceph-exporter.smithi181 on smithi181 2024-09-17T11:07:44.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:44 smithi181 ceph-mon[34172]: Reconfiguring ceph-exporter.smithi181 (monmap changed)... 2024-09-17T11:07:44.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:44 smithi181 ceph-mon[34172]: Reconfiguring daemon ceph-exporter.smithi181 on smithi181 2024-09-17T11:07:45.373 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:45.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:45.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3052071379' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:45.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:45.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:45.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi181", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:07:45.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:46.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:46.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3052071379' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:46.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:46.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:46.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi181", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:07:46.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:46.374 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:46.644 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: Reconfiguring crash.smithi181 (monmap changed)... 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: Reconfiguring daemon crash.smithi181 on smithi181 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:46.796 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:46.797 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:46.797 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:47.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: Reconfiguring crash.smithi181 (monmap changed)... 2024-09-17T11:07:47.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: Reconfiguring daemon crash.smithi181 on smithi181 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi181.zcjreb", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:47.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:47.309 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:47.918 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: Reconfiguring mgr.smithi181.zcjreb (monmap changed)... 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: Reconfiguring daemon mgr.smithi181.zcjreb on smithi181 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3604836944' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:07:47.919 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:47.949 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: Reconfiguring mgr.smithi181.zcjreb (monmap changed)... 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: Reconfiguring daemon mgr.smithi181.zcjreb on smithi181 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3604836944' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:07:48.069 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:48.805 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:48 smithi181 ceph-mon[34172]: Reconfiguring mon.smithi181 (monmap changed)... 2024-09-17T11:07:48.805 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:48 smithi181 ceph-mon[34172]: Reconfiguring daemon mon.smithi181 on smithi181 2024-09-17T11:07:48.950 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:48.974 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:48 smithi042 ceph-mon[25856]: Reconfiguring mon.smithi181 (monmap changed)... 2024-09-17T11:07:48.974 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:48 smithi042 ceph-mon[25856]: Reconfiguring daemon mon.smithi181 on smithi181 2024-09-17T11:07:49.215 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:49.877 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:49.877 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:49.877 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:49.877 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-17T11:07:49.877 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi042.front.sepia.ceph.com:9093"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi042.front.sepia.ceph.com:3000"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi042.front.sepia.ceph.com:9095"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:49.878 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:49.917 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi042.front.sepia.ceph.com:9093"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi042.front.sepia.ceph.com:3000"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi042.front.sepia.ceph.com:9095"} : dispatch 2024-09-17T11:07:50.014 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:50.015 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:50.015 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:50.505 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi042.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi042.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi042.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:50.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:50.787 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4131682914' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:50.787 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:51.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T11:07:51.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi042.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi042.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi042.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/4131682914' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:51.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:07:51.507 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.801 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:51.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:51.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:07:51.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:51.849 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:51 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:52.109 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:52.931 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:52 smithi042 ceph-mon[25856]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:52.935 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:53.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:52 smithi181 ceph-mon[34172]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:54.003 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:53 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1816653938' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:54.031 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:54.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:53 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1816653938' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:55.033 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:55.041 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:54 smithi042 ceph-mon[25856]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:55.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:54 smithi181 ceph-mon[34172]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:55.306 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:56.013 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:56.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:56 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1721803734' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:56.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:56.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:56 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1721803734' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:56.790 INFO:teuthology.orchestra.run.smithi042.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-17T11:07:57.791 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:57.944 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:57 smithi042 ceph-mon[25856]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:58.037 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:57 smithi181 ceph-mon[34172]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:58.299 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:07:58.705 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:58 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2592203366' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"} : dispatch 2024-09-17T11:07:58.706 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:58 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"} : dispatch 2024-09-17T11:07:58.706 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:58 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"}]': finished 2024-09-17T11:07:58.706 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:58 smithi042 ceph-mon[25856]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T11:07:58.706 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:58 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:58.992 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:07:59.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:58 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2592203366' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"} : dispatch 2024-09-17T11:07:59.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:58 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"} : dispatch 2024-09-17T11:07:59.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:58 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6b6327fd-4256-4d75-aa8f-721ec4582a53"}]': finished 2024-09-17T11:07:59.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:58 smithi181 ceph-mon[34172]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T11:07:59.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:58 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2815637261' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3407855316' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f6f14649-28ea-490e-81fa-c558ca9edf83"} : dispatch 2024-09-17T11:07:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3407855316' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6f14649-28ea-490e-81fa-c558ca9edf83"}]': finished 2024-09-17T11:07:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T11:07:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:07:59 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/1063803536' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2815637261' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3407855316' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f6f14649-28ea-490e-81fa-c558ca9edf83"} : dispatch 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3407855316' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6f14649-28ea-490e-81fa-c558ca9edf83"}]': finished 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:59.924 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:07:59 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/1063803536' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:07:59.925 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1726571278,"num_remapped_pgs":0} 2024-09-17T11:08:00.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:00 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/613175104' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:00.927 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:01.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:00 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/613175104' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:01.187 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:01.883 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:01.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:01 smithi042 ceph-mon[25856]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:01.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:02.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:01 smithi181 ceph-mon[34172]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:02.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:02.576 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726571279,"num_remapped_pgs":0} 2024-09-17T11:08:02.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:02 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3466803715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:03.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:02 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3466803715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:03.577 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:03.852 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:03.921 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:03.921 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/923767060' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"} : dispatch 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"} : dispatch 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"}]': finished 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:03.922 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:03 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:03.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:03.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/923767060' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"} : dispatch 2024-09-17T11:08:03.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"} : dispatch 2024-09-17T11:08:03.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "716665af-6639-473d-b22a-1f112bad4170"}]': finished 2024-09-17T11:08:03.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T11:08:03.974 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:03.974 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:03.974 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:03 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:04.540 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:04.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2766894384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1773892318' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea"} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1773892318' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea"}]': finished 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:04.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/692162051' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:05.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2766894384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:05.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1773892318' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea"} : dispatch 2024-09-17T11:08:05.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1773892318' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea"}]': finished 2024-09-17T11:08:05.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T11:08:05.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:05.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:05.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:05.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:05.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:04 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/692162051' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:05.482 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726571284,"num_remapped_pgs":0} 2024-09-17T11:08:05.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:05 smithi042 ceph-mon[25856]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:06.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:05 smithi181 ceph-mon[34172]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:06.483 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:06.754 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:06.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:06 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2438884111' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:07.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:06 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2438884111' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:07.450 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:07.767 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:07 smithi042 ceph-mon[25856]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:07.767 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:07 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/508266899' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:07.780 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:07 smithi181 ceph-mon[34172]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:07.780 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:07 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/508266899' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:08.031 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726571284,"num_remapped_pgs":0} 2024-09-17T11:08:08.996 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2861732424' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"} : dispatch 2024-09-17T11:08:08.996 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"} : dispatch 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"}]': finished 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:08.997 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:09.032 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:09.059 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2861732424' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"} : dispatch 2024-09-17T11:08:09.059 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"} : dispatch 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "23adb2df-64b6-4549-b75b-f156c704b5c9"}]': finished 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:09.060 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:09.307 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:10.031 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:10.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:10.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/675171735' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:10.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2248779306' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5"} : dispatch 2024-09-17T11:08:10.031 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2248779306' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5"}]': finished 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:10.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:10.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/675171735' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2248779306' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5"} : dispatch 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2248779306' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5"}]': finished 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:10.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:10.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:10.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:10.796 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:10 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3204889475' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:10.825 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726571289,"num_remapped_pgs":0} 2024-09-17T11:08:11.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:10 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3204889475' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:11.827 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:12.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:11 smithi042 ceph-mon[25856]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:12.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:11 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/650676483' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:12.094 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:12.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:11 smithi181 ceph-mon[34172]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:12.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:11 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/650676483' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:12.722 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:13.289 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726571289,"num_remapped_pgs":0} 2024-09-17T11:08:13.979 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2442804556' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2105896047' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"}]': finished 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:13.980 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:13.981 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:14.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:14.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2442804556' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:14.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2105896047' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9d0f452b-a055-4435-bda9-55503f80f40c"}]': finished 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:14.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:14.289 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:14.577 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:14.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/3957192771' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:14.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/854567193' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a382269f-1ee0-49df-b752-f87338e5a018"} : dispatch 2024-09-17T11:08:14.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/854567193' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a382269f-1ee0-49df-b752-f87338e5a018"}]': finished 2024-09-17T11:08:14.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:14.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:14 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:14.958 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/3957192771' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/854567193' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a382269f-1ee0-49df-b752-f87338e5a018"} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/854567193' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a382269f-1ee0-49df-b752-f87338e5a018"}]': finished 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:14.959 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:14 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:15.240 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:16.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:15 smithi042 ceph-mon[25856]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:16.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:15 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3961863464' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:16.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:15 smithi181 ceph-mon[34172]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:16.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:15 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3961863464' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:16.227 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:17.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:16 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3195067404' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:17.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:17.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:16 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3195067404' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:08:17.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:17.228 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:17.503 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:17.970 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:17 smithi042 ceph-mon[25856]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:18.018 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:17 smithi181 ceph-mon[34172]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:18.145 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:18.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:18 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1336402300' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:18.835 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:19.027 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:18 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1336402300' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:19.837 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:20.023 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:19 smithi181 ceph-mon[34172]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:20.028 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:19 smithi042 ceph-mon[25856]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:20.109 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:20.758 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:21.778 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:21 smithi181 ceph-mon[34172]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:21.778 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:21 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/887170052' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:21.778 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-17T11:08:21.778 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:21.889 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:21 smithi042 ceph-mon[25856]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:21.889 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:21 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/887170052' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:21.889 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-17T11:08:21.889 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:22.581 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:22.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:22 smithi042 ceph-mon[25856]: Deploying daemon osd.0 on smithi181 2024-09-17T11:08:22.912 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:22 smithi181 ceph-mon[34172]: Deploying daemon osd.0 on smithi181 2024-09-17T11:08:23.582 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:23.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:23 smithi042 ceph-mon[25856]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:23.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-17T11:08:23.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:23.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:23 smithi181 ceph-mon[34172]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:23.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-17T11:08:23.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:24.060 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:24.753 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:24.994 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:24 smithi042 ceph-mon[25856]: Deploying daemon osd.1 on smithi042 2024-09-17T11:08:25.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:24 smithi181 ceph-mon[34172]: Deploying daemon osd.1 on smithi042 2024-09-17T11:08:25.592 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:25.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:25 smithi042 ceph-mon[25856]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:25.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:25 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/666131268' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:26.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:25 smithi181 ceph-mon[34172]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:26.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:25 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/666131268' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:26.594 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:26.887 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:26 smithi042 ceph-mon[25856]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:27.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:26 smithi181 ceph-mon[34172]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:27.284 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:28.268 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:28.952 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:29.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:29.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/713506419' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:29.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:29.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:29.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-17T11:08:29.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/713506419' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-17T11:08:29.180 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:29.954 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:30.209 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:29 smithi181 ceph-mon[34172]: Deploying daemon osd.2 on smithi181 2024-09-17T11:08:30.219 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:30.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:29 smithi042 ceph-mon[25856]: Deploying daemon osd.2 on smithi181 2024-09-17T11:08:30.889 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:31.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:30 smithi181 ceph-mon[34172]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:31.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:30 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2107993900' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:31.214 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:30 smithi042 ceph-mon[25856]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:31.214 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:30 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2107993900' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:31.550 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:32.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:32.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:32.551 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:33.156 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:32 smithi042 ceph-mon[25856]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:33.195 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:33.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:32 smithi181 ceph-mon[34172]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:33.888 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-17T11:08:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: Deploying daemon osd.3 on smithi042 2024-09-17T11:08:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2246526046' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:08:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:34 smithi042 ceph-mon[25856]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:08:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-17T11:08:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: Deploying daemon osd.3 on smithi042 2024-09-17T11:08:34.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2246526046' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:34.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:08:34.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:34 smithi181 ceph-mon[34172]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:08:35.045 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:35.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:35.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T11:08:35.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:35.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:35 smithi042 ceph-mon[25856]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:35.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:35.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:35 smithi181 ceph-mon[34172]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:36.046 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:36.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:36.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:36 smithi042 ceph-mon[25856]: from='osd.0 ' entity='osd.0' 2024-09-17T11:08:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T11:08:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:36.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:36 smithi181 ceph-mon[34172]: from='osd.0 ' entity='osd.0' 2024-09-17T11:08:36.775 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:37.514 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: Deploying daemon osd.4 on smithi181 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715] boot 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:37.515 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:37.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:37.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: Deploying daemon osd.4 on smithi181 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: osd.0 [v2:172.21.15.181:6800/3060147715,v1:172.21.15.181:6801/3060147715] boot 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:37.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:37.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:37.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:37.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:37.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:37.720 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:38.325 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":17,"num_osds":8,"num_up_osds":1,"osd_up_since":1726571316,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:38.899 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T11:08:38.899 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1664106175' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:38.900 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:38 smithi181 ceph-mon[34172]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-17T11:08:39.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1664106175' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:39.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:38 smithi042 ceph-mon[25856]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-17T11:08:39.326 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:39.592 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:39.970 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:39.971 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:39.971 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:39.971 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:39.971 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:39 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:40.008 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:39 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:40.289 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:40.886 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:40.887 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:40.887 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:40.887 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:40.887 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:40 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2995529373' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:40.914 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":19,"num_osds":8,"num_up_osds":1,"osd_up_since":1726571316,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:41.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:40 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2995529373' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:41.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:41.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381] boot 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:08:41.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:41 smithi181 ceph-mon[34172]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: osd.1 [v2:172.21.15.42:6802/394343381,v1:172.21.15.42:6803/394343381] boot 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:41.882 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:41.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:41.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:41.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:08:41.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:41 smithi042 ceph-mon[25856]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:08:41.915 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:42.502 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:42.914 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:42.915 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:42.916 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-17T11:08:42.916 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:42 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:42.921 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: osdmap e21: 8 total, 2 up, 8 in 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:42.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-17T11:08:42.923 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:42 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:43.211 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:43.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: Deploying daemon osd.5 on smithi042 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4130359364' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:43.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-17T11:08:43.823 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:43 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:43.880 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":22,"num_osds":8,"num_up_osds":2,"osd_up_since":1726571320,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:44.087 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: Deploying daemon osd.5 on smithi042 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: osdmap e22: 8 total, 2 up, 8 in 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/4130359364' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:44.088 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:44.089 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-17T11:08:44.089 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:43 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:44.799 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:44.799 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: Deploying daemon osd.6 on smithi181 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856] boot 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:44.800 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:44 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:08:44.881 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:44.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:44.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:44.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: Deploying daemon osd.6 on smithi181 2024-09-17T11:08:44.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: osd.2 [v2:172.21.15.181:6808/4099525856,v1:172.21.15.181:6809/4099525856] boot 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:44.908 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:44 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:08:45.519 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:45.789 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:08:45.789 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:45.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:45 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:08:45.947 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:08:45.947 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:08:45.947 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:45.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:45 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55626]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55626]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55626]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55626]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55629]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55629]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55629]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:08:46.401 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 sudo[55629]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43653]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43653]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43653]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43653]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43656]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43656]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:08:46.535 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43656]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:08:46.536 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 sudo[43656]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:08:46.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.892 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:46.903 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:08:46.903 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T11:08:46.903 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:46.904 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:08:46.905 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi042"} : dispatch 2024-09-17T11:08:46.905 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "mon metadata", "id": "smithi181"} : dispatch 2024-09-17T11:08:46.905 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:08:46.905 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:47.621 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":26,"num_osds":8,"num_up_osds":3,"osd_up_since":1726571323,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:47.951 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2101463884' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:47.952 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:47 smithi042 ceph-mon[25856]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-17T11:08:48.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: pgmap v73: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:08:48.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T11:08:48.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:48.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:48.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:48.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:48.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:48.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2101463884' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:48.098 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:47 smithi181 ceph-mon[34172]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-17T11:08:48.622 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:48.900 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:49.020 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:08:49.021 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:48 smithi042 ceph-mon[25856]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:49.064 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:49.065 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:49.066 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:08:49.066 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:08:49.066 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:08:49.066 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:48 smithi181 ceph-mon[34172]: from='osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:49.599 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:49.927 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T11:08:49.927 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: osdmap e28: 8 total, 3 up, 8 in 2024-09-17T11:08:49.927 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:49.927 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:49.927 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: mgrmap e19: smithi042.jxsumf(active, since 2m), standbys: smithi181.zcjreb 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646] boot 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: osdmap e29: 8 total, 4 up, 8 in 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:49.928 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:49.929 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:49.929 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:49.929 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:49 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3831372406' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:50.032 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T11:08:50.032 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: osdmap e28: 8 total, 3 up, 8 in 2024-09-17T11:08:50.032 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:50.032 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:50.032 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: mgrmap e19: smithi042.jxsumf(active, since 2m), standbys: smithi181.zcjreb 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: osd.3 [v2:172.21.15.42:6810/1772336646,v1:172.21.15.42:6811/1772336646] boot 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: osdmap e29: 8 total, 4 up, 8 in 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:50.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:50.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:50.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:49 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3831372406' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:50.249 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":29,"num_osds":8,"num_up_osds":4,"osd_up_since":1726571329,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":1} 2024-09-17T11:08:50.947 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259] boot 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:50.948 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:50 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:51.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:51.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:51.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: pgmap v79: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 357 GiB / 358 GiB avail 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: osd.4 [v2:172.21.15.181:6816/2320856259,v1:172.21.15.181:6817/2320856259] boot 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:51.072 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:50 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:51.251 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:51.650 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:52.304 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:52.305 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-17T11:08:52.305 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:52.305 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:52 smithi181 ceph-mon[34172]: Deploying daemon osd.7 on smithi042 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:52.320 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-17T11:08:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:52.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:52 smithi042 ceph-mon[25856]: Deploying daemon osd.7 on smithi042 2024-09-17T11:08:52.355 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:53.209 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":32,"num_osds":8,"num_up_osds":5,"osd_up_since":1726571330,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: pgmap v82: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:53.392 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:53 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4059166898' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:53.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: pgmap v82: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:08:53.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T11:08:53.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:53.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:53.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:53.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:53 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/4059166898' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:54.210 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:54.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:54 smithi181 ceph-mon[34172]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T11:08:54.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:54.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:54.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:54.510 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:54 smithi042 ceph-mon[25856]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T11:08:54.510 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:54.510 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:54.510 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:54.586 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:55.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:55 smithi181 ceph-mon[34172]: pgmap v85: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:08:55.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:55 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:55.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:55 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:55.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:55 smithi181 ceph-mon[34172]: from='osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:08:55.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:55 smithi181 ceph-mon[34172]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:08:55.716 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:55 smithi042 ceph-mon[25856]: pgmap v85: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:08:55.716 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:55 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:55.716 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:55 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:08:55.717 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:55 smithi042 ceph-mon[25856]: from='osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:08:55.717 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:55 smithi042 ceph-mon[25856]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:08:56.032 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:56.637 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T11:08:56.637 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: osdmap e34: 8 total, 5 up, 8 in 2024-09-17T11:08:56.637 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:56.637 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:56.638 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:56.638 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:56.638 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:56.638 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:56 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/663903579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:56.712 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":34,"num_osds":8,"num_up_osds":5,"osd_up_since":1726571330,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:56.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T11:08:56.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: osdmap e34: 8 total, 5 up, 8 in 2024-09-17T11:08:56.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:56.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:56.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:56.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:56.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]} : dispatch 2024-09-17T11:08:56.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:56 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/663903579' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:57.713 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:08:57.738 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: pgmap v87: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 122 KiB/s, 0 objects/s recovering 2024-09-17T11:08:57.738 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: osdmap e35: 8 total, 5 up, 8 in 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-17T11:08:57.739 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:57 smithi042 ceph-mon[25856]: from='osd.6 ' entity='osd.6' 2024-09-17T11:08:57.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: pgmap v87: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 122 KiB/s, 0 objects/s recovering 2024-09-17T11:08:57.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi181", "root=default"]}]': finished 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: osdmap e35: 8 total, 5 up, 8 in 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-17T11:08:57.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:57 smithi181 ceph-mon[34172]: from='osd.6 ' entity='osd.6' 2024-09-17T11:08:57.981 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922] boot 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:58.669 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:58 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:58.670 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:08:58.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:08:58.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:08:58.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:58.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: osd.6 [v2:172.21.15.181:6824/3797351922,v1:172.21.15.181:6825/3797351922] boot 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:08:58.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:58 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:59.235 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":37,"num_osds":8,"num_up_osds":6,"osd_up_since":1726571337,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:08:59.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-09-17T11:08:59.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:59.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: osdmap e37: 8 total, 6 up, 8 in 2024-09-17T11:08:59.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:59.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:59.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:59.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:08:59 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/642509938' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:08:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-09-17T11:08:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: from='osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:08:59.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: osdmap e37: 8 total, 6 up, 8 in 2024-09-17T11:08:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:08:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:08:59.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:08:59 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/642509938' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:00.236 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:09:00.541 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:00.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:09:00.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:09:00.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082] boot 2024-09-17T11:09:00.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T11:09:00.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:09:00.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:00 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:00.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:09:00.692 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:09:00.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: osd.5 [v2:172.21.15.42:6818/933169082,v1:172.21.15.42:6819/933169082] boot 2024-09-17T11:09:00.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T11:09:00.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:09:00.693 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:00 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:01.242 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T11:09:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:01.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:01.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3824392895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:01.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:01.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:01.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T11:09:01.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:01.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:01.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:01.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3824392895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:01.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:02.409 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":39,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571339,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:09:03.410 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:09:03.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:03 smithi181 ceph-mon[34172]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:03.674 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:03.795 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:03 smithi042 ceph-mon[25856]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:04.309 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:04.790 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:04 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2110378074' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:04.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:04 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2110378074' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:04.983 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":39,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571339,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:09:05.643 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:05 smithi042 ceph-mon[25856]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:05.643 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:05 smithi042 ceph-mon[25856]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-17T11:09:05.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:05 smithi181 ceph-mon[34172]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:05.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:05 smithi181 ceph-mon[34172]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-17T11:09:05.984 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:09:06.245 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:06.654 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:06.655 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:06.655 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:09:06.655 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: osdmap e41: 8 total, 7 up, 8 in 2024-09-17T11:09:06.655 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:06.733 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T11:09:06.733 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi042", "root=default"]} : dispatch 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi042", "root=default"]}]': finished 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: osdmap e41: 8 total, 7 up, 8 in 2024-09-17T11:09:06.734 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:06.948 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:07.567 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:07 smithi042 ceph-mon[25856]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:07.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:07.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:07 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/574877613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:07.568 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:07.598 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":41,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571339,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:09:07.720 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:07 smithi181 ceph-mon[34172]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:07.721 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:07.721 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:07 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/574877613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:07.721 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:08.599 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:09:08.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: purged_snaps scrub starts 2024-09-17T11:09:08.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: purged_snaps scrub ok 2024-09-17T11:09:08.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187] boot 2024-09-17T11:09:08.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T11:09:08.807 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:08.808 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:08.808 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:08 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:08.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: purged_snaps scrub starts 2024-09-17T11:09:08.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: purged_snaps scrub ok 2024-09-17T11:09:08.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: osd.7 [v2:172.21.15.42:6826/623535187,v1:172.21.15.42:6827/623535187] boot 2024-09-17T11:09:08.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T11:09:08.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:09:08.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:08.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:08 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:09.650 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:09.772 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:09 smithi042 ceph-mon[25856]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:09.772 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:09 smithi042 ceph-mon[25856]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T11:09:09.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:09 smithi181 ceph-mon[34172]: pgmap v101: 1 pgs: 1 unknown; 577 KiB data, 193 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:09:09.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:09 smithi181 ceph-mon[34172]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T11:09:10.628 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:10.629 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:10 smithi042 ceph-mon[25856]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T11:09:10.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:10 smithi181 ceph-mon[34172]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T11:09:11.667 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:11 smithi042 ceph-mon[25856]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:11.667 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:11 smithi042 ceph-mon[25856]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T11:09:11.667 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:11 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2605400951' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:11.693 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":45,"num_osds":8,"num_up_osds":8,"osd_up_since":1726571347,"num_in_osds":8,"osd_in_since":1726571294,"num_remapped_pgs":0} 2024-09-17T11:09:11.694 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:09:11.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:11 smithi181 ceph-mon[34172]: pgmap v104: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:11.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:11 smithi181 ceph-mon[34172]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T11:09:11.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:11 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2605400951' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:09:12.513 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:12.748 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T11:09:12.748 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.749 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:12.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:12.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:13.213 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:13.214 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":46,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:04:30.967970+0000","modified":"2024-09-17T11:09:11.465289+0000","last_up_change":"2024-09-17T11:09:07.445336+0000","last_in_change":"2024-09-17T11:08:14.674674+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:08:44.334219+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"6b6327fd-4256-4d75-aa8f-721ec4582a53","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6801","nonce":3060147715}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6803","nonce":3060147715}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6807","nonce":3060147715}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6805","nonce":3060147715}]},"public_addr":"172.21.15.181:6801/3060147715","cluster_addr":"172.21.15.181:6803/3060147715","heartbeat_back_addr":"172.21.15.181:6807/3060147715","heartbeat_front_addr":"172.21.15.181:6805/3060147715","state":["exists","up"]},{"osd":1,"uuid":"f6f14649-28ea-490e-81fa-c558ca9edf83","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.42:6802","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6803","nonce":394343381}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6804","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6805","nonce":394343381}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6808","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6809","nonce":394343381}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6806","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6807","nonce":394343381}]},"public_addr":"172.21.15.42:6803/394343381","cluster_addr":"172.21.15.42:6805/394343381","heartbeat_back_addr":"172.21.15.42:6809/394343381","heartbeat_front_addr":"172.21.15.42:6807/394343381","state":["exists","up"]},{"osd":2,"uuid":"716665af-6639-473d-b22a-1f112bad4170","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6809","nonce":4099525856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6811","nonce":4099525856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6815","nonce":4099525856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6813","nonce":4099525856}]},"public_addr":"172.21.15.181:6809/4099525856","cluster_addr":"172.21.15.181:6811/4099525856","heartbeat_back_addr":"172.21.15.181:6815/4099525856","heartbeat_front_addr":"172.21.15.181:6813/4099525856","state":["exists","up"]},{"osd":3,"uuid":"a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea","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.42:6810","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6811","nonce":1772336646}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6812","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6813","nonce":1772336646}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6816","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6817","nonce":1772336646}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6814","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6815","nonce":1772336646}]},"public_addr":"172.21.15.42:6811/1772336646","cluster_addr":"172.21.15.42:6813/1772336646","heartbeat_back_addr":"172.21.15.42:6817/1772336646","heartbeat_front_addr":"172.21.15.42:6815/1772336646","state":["exists","up"]},{"osd":4,"uuid":"23adb2df-64b6-4549-b75b-f156c704b5c9","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.181:6816","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6817","nonce":2320856259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6818","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6819","nonce":2320856259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6822","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6823","nonce":2320856259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6820","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6821","nonce":2320856259}]},"public_addr":"172.21.15.181:6817/2320856259","cluster_addr":"172.21.15.181:6819/2320856259","heartbeat_back_addr":"172.21.15.181:6823/2320856259","heartbeat_front_addr":"172.21.15.181:6821/2320856259","state":["exists","up"]},{"osd":5,"uuid":"ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6818","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6819","nonce":933169082}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6820","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6821","nonce":933169082}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6824","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6825","nonce":933169082}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6822","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6823","nonce":933169082}]},"public_addr":"172.21.15.42:6819/933169082","cluster_addr":"172.21.15.42:6821/933169082","heartbeat_back_addr":"172.21.15.42:6825/933169082","heartbeat_front_addr":"172.21.15.42:6823/933169082","state":["exists","up"]},{"osd":6,"uuid":"9d0f452b-a055-4435-bda9-55503f80f40c","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.181:6824","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6825","nonce":3797351922}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6826","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6827","nonce":3797351922}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6830","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6831","nonce":3797351922}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6828","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6829","nonce":3797351922}]},"public_addr":"172.21.15.181:6825/3797351922","cluster_addr":"172.21.15.181:6827/3797351922","heartbeat_back_addr":"172.21.15.181:6831/3797351922","heartbeat_front_addr":"172.21.15.181:6829/3797351922","state":["exists","up"]},{"osd":7,"uuid":"a382269f-1ee0-49df-b752-f87338e5a018","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6826","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6827","nonce":623535187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6828","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6829","nonce":623535187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6832","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6833","nonce":623535187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6830","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6831","nonce":623535187}]},"public_addr":"172.21.15.42:6827/623535187","cluster_addr":"172.21.15.42:6829/623535187","heartbeat_back_addr":"172.21.15.42:6833/623535187","heartbeat_front_addr":"172.21.15.42:6831/623535187","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:35.119029+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:38.748681+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:42.603336+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:48.013099+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:49.525165+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:57.599425+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:55.892103+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:09:06.339949+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.42:0/3905319364":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/412282447":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3666215526":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3085978115":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/1162666148":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3153109724":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6801/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/3133573329":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/895368732":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/4172307696":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/85994639":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6800/85994639":"2024-09-18T11:06:45.874684+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-17T11:09:13.696 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: pgmap v107: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:13.696 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: Detected new or changed devices on smithi181 2024-09-17T11:09:13.696 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: Adjusting osd_memory_target on smithi181 to 3727M 2024-09-17T11:09:13.697 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:13.697 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:13.697 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:13 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/4014832382' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:13.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: pgmap v107: 1 pgs: 1 unknown; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:13.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: Detected new or changed devices on smithi181 2024-09-17T11:09:13.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: Adjusting osd_memory_target on smithi181 to 3727M 2024-09-17T11:09:13.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:13.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:13.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:13 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/4014832382' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:13.852 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T11:08:44.334219+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-17T11:09:13.853 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T11:09:14.120 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:14.811 INFO:teuthology.orchestra.run.smithi042.stdout:pg_num: 1 2024-09-17T11:09:15.518 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:15 smithi042 ceph-mon[25856]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-17T11:09:15.518 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:15 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1775577078' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-17T11:09:15.549 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T11:09:15.549 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T11:09:15.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:15 smithi181 ceph-mon[34172]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 106 KiB/s, 0 objects/s recovering 2024-09-17T11:09:15.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:15 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1775577078' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-17T11:09:16.475 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:16.748 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:17.604 INFO:teuthology.orchestra.run.smithi042.stdout:[client.0] 2024-09-17T11:09:17.607 INFO:teuthology.orchestra.run.smithi042.stdout: key = AQBdY+lmo2/iIxAAvkth4gV/VZ9EeJAXhxBJOg== 2024-09-17T11:09:17.607 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:17 smithi042 ceph-mon[25856]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-17T11:09:17.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:17 smithi181 ceph-mon[34172]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-17T11:09:18.327 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:09:18.327 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-17T11:09:18.327 DEBUG:teuthology.orchestra.run.smithi042:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-17T11:09:18.365 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T11:09:18.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:18 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2324299980' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:09:18.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:18 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2324299980' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:09:18.625 INFO:teuthology.orchestra.run.smithi181.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi181/config 2024-09-17T11:09:18.745 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:18 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2324299980' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:09:18.746 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:18 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2324299980' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:09:19.445 INFO:teuthology.orchestra.run.smithi181.stdout:[client.1] 2024-09-17T11:09:19.445 INFO:teuthology.orchestra.run.smithi181.stdout: key = AQBfY+lmIF1HGhAATezvKl5LfSO0leob5N2gnA== 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.785 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/2318030035' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: 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-17T11:09:19.786 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:19 smithi042 ceph-mon[25856]: 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-17T11:09:19.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-17T11:09:19.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:09:19.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:09:19.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:19.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/2318030035' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:09:19.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: 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-17T11:09:19.848 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:19 smithi181 ceph-mon[34172]: 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-17T11:09:20.324 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:09:20.324 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-17T11:09:20.324 DEBUG:teuthology.orchestra.run.smithi181:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-17T11:09:20.364 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph config log 1 --format=json 2024-09-17T11:09:20.702 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:20.788 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:20 smithi042 ceph-mon[25856]: Detected new or changed devices on smithi042 2024-09-17T11:09:20.789 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:20 smithi042 ceph-mon[25856]: Adjusting osd_memory_target on smithi042 to 2961M 2024-09-17T11:09:20.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:20 smithi181 ceph-mon[34172]: Detected new or changed devices on smithi042 2024-09-17T11:09:20.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:20 smithi181 ceph-mon[34172]: Adjusting osd_memory_target on smithi042 to 2961M 2024-09-17T11:09:21.704 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:21 smithi181 ceph-mon[34172]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-17T11:09:21.775 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:22.068 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:21 smithi042 ceph-mon[25856]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-17T11:09:22.677 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:22 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1869667137' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-17T11:09:22.723 INFO:teuthology.orchestra.run.smithi042.stdout:[{"version":17,"timestamp":"2024-09-17T11:09:19.057882+0000","name":"","changes":[{"name":"osd/host:smithi042/osd_memory_target","new_value":"3104924057"}]}] 2024-09-17T11:09:22.723 INFO:tasks.ceph_manager:config epoch is 17 2024-09-17T11:09:22.724 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T11:09:22.724 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T11:09:22.724 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T11:09:23.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:22 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1869667137' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-17T11:09:23.219 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:23.621 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:23 smithi042 ceph-mon[25856]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-17T11:09:23.672 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:23 smithi181 ceph-mon[34172]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s, 0 objects/s recovering 2024-09-17T11:09:23.964 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:24.638 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":19,"flags":0,"active_gid":14229,"active_name":"smithi042.jxsumf","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6800","nonce":23630869},{"type":"v1","addr":"172.21.15.42:6801","nonce":23630869}]},"active_addr":"172.21.15.42:6801/23630869","active_change":"2024-09-17T11:06:45.874792+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14254,"name":"smithi181.zcjreb","mgr_features":4540719139924082687,"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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","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_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","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_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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.42:8443/","prometheus":"http://172.21.15.42:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.42:0","nonce":1207250386}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.42:0","nonce":3829042986}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.42:0","nonce":3287622267}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.42:0","nonce":2625678180}]}]} 2024-09-17T11:09:24.643 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T11:09:24.643 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T11:09:24.643 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:09:24.697 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:24 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2598798922' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-17T11:09:24.863 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:24 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2598798922' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-17T11:09:25.951 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:25 smithi042 ceph-mon[25856]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T11:09:26.066 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:25 smithi181 ceph-mon[34172]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-17T11:09:26.176 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:27.006 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:27.006 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":46,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:04:30.967970+0000","modified":"2024-09-17T11:09:11.465289+0000","last_up_change":"2024-09-17T11:09:07.445336+0000","last_in_change":"2024-09-17T11:08:14.674674+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:08:44.334219+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"6b6327fd-4256-4d75-aa8f-721ec4582a53","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6801","nonce":3060147715}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6803","nonce":3060147715}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6807","nonce":3060147715}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6805","nonce":3060147715}]},"public_addr":"172.21.15.181:6801/3060147715","cluster_addr":"172.21.15.181:6803/3060147715","heartbeat_back_addr":"172.21.15.181:6807/3060147715","heartbeat_front_addr":"172.21.15.181:6805/3060147715","state":["exists","up"]},{"osd":1,"uuid":"f6f14649-28ea-490e-81fa-c558ca9edf83","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.42:6802","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6803","nonce":394343381}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6804","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6805","nonce":394343381}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6808","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6809","nonce":394343381}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6806","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6807","nonce":394343381}]},"public_addr":"172.21.15.42:6803/394343381","cluster_addr":"172.21.15.42:6805/394343381","heartbeat_back_addr":"172.21.15.42:6809/394343381","heartbeat_front_addr":"172.21.15.42:6807/394343381","state":["exists","up"]},{"osd":2,"uuid":"716665af-6639-473d-b22a-1f112bad4170","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6809","nonce":4099525856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6811","nonce":4099525856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6815","nonce":4099525856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6813","nonce":4099525856}]},"public_addr":"172.21.15.181:6809/4099525856","cluster_addr":"172.21.15.181:6811/4099525856","heartbeat_back_addr":"172.21.15.181:6815/4099525856","heartbeat_front_addr":"172.21.15.181:6813/4099525856","state":["exists","up"]},{"osd":3,"uuid":"a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea","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.42:6810","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6811","nonce":1772336646}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6812","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6813","nonce":1772336646}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6816","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6817","nonce":1772336646}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6814","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6815","nonce":1772336646}]},"public_addr":"172.21.15.42:6811/1772336646","cluster_addr":"172.21.15.42:6813/1772336646","heartbeat_back_addr":"172.21.15.42:6817/1772336646","heartbeat_front_addr":"172.21.15.42:6815/1772336646","state":["exists","up"]},{"osd":4,"uuid":"23adb2df-64b6-4549-b75b-f156c704b5c9","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.181:6816","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6817","nonce":2320856259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6818","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6819","nonce":2320856259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6822","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6823","nonce":2320856259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6820","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6821","nonce":2320856259}]},"public_addr":"172.21.15.181:6817/2320856259","cluster_addr":"172.21.15.181:6819/2320856259","heartbeat_back_addr":"172.21.15.181:6823/2320856259","heartbeat_front_addr":"172.21.15.181:6821/2320856259","state":["exists","up"]},{"osd":5,"uuid":"ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6818","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6819","nonce":933169082}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6820","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6821","nonce":933169082}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6824","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6825","nonce":933169082}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6822","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6823","nonce":933169082}]},"public_addr":"172.21.15.42:6819/933169082","cluster_addr":"172.21.15.42:6821/933169082","heartbeat_back_addr":"172.21.15.42:6825/933169082","heartbeat_front_addr":"172.21.15.42:6823/933169082","state":["exists","up"]},{"osd":6,"uuid":"9d0f452b-a055-4435-bda9-55503f80f40c","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.181:6824","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6825","nonce":3797351922}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6826","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6827","nonce":3797351922}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6830","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6831","nonce":3797351922}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6828","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6829","nonce":3797351922}]},"public_addr":"172.21.15.181:6825/3797351922","cluster_addr":"172.21.15.181:6827/3797351922","heartbeat_back_addr":"172.21.15.181:6831/3797351922","heartbeat_front_addr":"172.21.15.181:6829/3797351922","state":["exists","up"]},{"osd":7,"uuid":"a382269f-1ee0-49df-b752-f87338e5a018","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6826","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6827","nonce":623535187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6828","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6829","nonce":623535187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6832","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6833","nonce":623535187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6830","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6831","nonce":623535187}]},"public_addr":"172.21.15.42:6827/623535187","cluster_addr":"172.21.15.42:6829/623535187","heartbeat_back_addr":"172.21.15.42:6833/623535187","heartbeat_front_addr":"172.21.15.42:6831/623535187","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:35.119029+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:38.748681+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:42.603336+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:48.013099+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:49.525165+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:57.599425+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:55.892103+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:09:06.339949+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.42:0/3905319364":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/412282447":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3666215526":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3085978115":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/1162666148":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3153109724":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6801/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/3133573329":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/895368732":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/4172307696":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/85994639":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6800/85994639":"2024-09-18T11:06:45.874684+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-17T11:09:27.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:27 smithi042 ceph-mon[25856]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:27.973 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:27 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/351835456' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:28.005 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T11:09:28.005 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:09:28.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:27 smithi181 ceph-mon[34172]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:28.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:27 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/351835456' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:28.748 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:29.421 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:29.421 INFO:teuthology.orchestra.run.smithi042.stdout:{"epoch":46,"fsid":"82491f84-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:04:30.967970+0000","modified":"2024-09-17T11:09:11.465289+0000","last_up_change":"2024-09-17T11:09:07.445336+0000","last_in_change":"2024-09-17T11:08:14.674674+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:08:44.334219+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"6b6327fd-4256-4d75-aa8f-721ec4582a53","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6800","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6801","nonce":3060147715}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6802","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6803","nonce":3060147715}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6806","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6807","nonce":3060147715}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6804","nonce":3060147715},{"type":"v1","addr":"172.21.15.181:6805","nonce":3060147715}]},"public_addr":"172.21.15.181:6801/3060147715","cluster_addr":"172.21.15.181:6803/3060147715","heartbeat_back_addr":"172.21.15.181:6807/3060147715","heartbeat_front_addr":"172.21.15.181:6805/3060147715","state":["exists","up"]},{"osd":1,"uuid":"f6f14649-28ea-490e-81fa-c558ca9edf83","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.42:6802","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6803","nonce":394343381}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6804","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6805","nonce":394343381}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6808","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6809","nonce":394343381}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6806","nonce":394343381},{"type":"v1","addr":"172.21.15.42:6807","nonce":394343381}]},"public_addr":"172.21.15.42:6803/394343381","cluster_addr":"172.21.15.42:6805/394343381","heartbeat_back_addr":"172.21.15.42:6809/394343381","heartbeat_front_addr":"172.21.15.42:6807/394343381","state":["exists","up"]},{"osd":2,"uuid":"716665af-6639-473d-b22a-1f112bad4170","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6808","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6809","nonce":4099525856}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6810","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6811","nonce":4099525856}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6814","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6815","nonce":4099525856}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6812","nonce":4099525856},{"type":"v1","addr":"172.21.15.181:6813","nonce":4099525856}]},"public_addr":"172.21.15.181:6809/4099525856","cluster_addr":"172.21.15.181:6811/4099525856","heartbeat_back_addr":"172.21.15.181:6815/4099525856","heartbeat_front_addr":"172.21.15.181:6813/4099525856","state":["exists","up"]},{"osd":3,"uuid":"a9a6bcc1-0f10-4dbd-a056-e2dec1b97cea","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.42:6810","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6811","nonce":1772336646}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6812","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6813","nonce":1772336646}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6816","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6817","nonce":1772336646}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6814","nonce":1772336646},{"type":"v1","addr":"172.21.15.42:6815","nonce":1772336646}]},"public_addr":"172.21.15.42:6811/1772336646","cluster_addr":"172.21.15.42:6813/1772336646","heartbeat_back_addr":"172.21.15.42:6817/1772336646","heartbeat_front_addr":"172.21.15.42:6815/1772336646","state":["exists","up"]},{"osd":4,"uuid":"23adb2df-64b6-4549-b75b-f156c704b5c9","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.181:6816","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6817","nonce":2320856259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6818","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6819","nonce":2320856259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6822","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6823","nonce":2320856259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6820","nonce":2320856259},{"type":"v1","addr":"172.21.15.181:6821","nonce":2320856259}]},"public_addr":"172.21.15.181:6817/2320856259","cluster_addr":"172.21.15.181:6819/2320856259","heartbeat_back_addr":"172.21.15.181:6823/2320856259","heartbeat_front_addr":"172.21.15.181:6821/2320856259","state":["exists","up"]},{"osd":5,"uuid":"ff3416b0-54a0-4179-b9bc-8f4fe9dbbbe5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6818","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6819","nonce":933169082}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6820","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6821","nonce":933169082}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6824","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6825","nonce":933169082}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6822","nonce":933169082},{"type":"v1","addr":"172.21.15.42:6823","nonce":933169082}]},"public_addr":"172.21.15.42:6819/933169082","cluster_addr":"172.21.15.42:6821/933169082","heartbeat_back_addr":"172.21.15.42:6825/933169082","heartbeat_front_addr":"172.21.15.42:6823/933169082","state":["exists","up"]},{"osd":6,"uuid":"9d0f452b-a055-4435-bda9-55503f80f40c","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.181:6824","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6825","nonce":3797351922}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6826","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6827","nonce":3797351922}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6830","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6831","nonce":3797351922}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.181:6828","nonce":3797351922},{"type":"v1","addr":"172.21.15.181:6829","nonce":3797351922}]},"public_addr":"172.21.15.181:6825/3797351922","cluster_addr":"172.21.15.181:6827/3797351922","heartbeat_back_addr":"172.21.15.181:6831/3797351922","heartbeat_front_addr":"172.21.15.181:6829/3797351922","state":["exists","up"]},{"osd":7,"uuid":"a382269f-1ee0-49df-b752-f87338e5a018","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6826","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6827","nonce":623535187}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6828","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6829","nonce":623535187}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6832","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6833","nonce":623535187}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.42:6830","nonce":623535187},{"type":"v1","addr":"172.21.15.42:6831","nonce":623535187}]},"public_addr":"172.21.15.42:6827/623535187","cluster_addr":"172.21.15.42:6829/623535187","heartbeat_back_addr":"172.21.15.42:6833/623535187","heartbeat_front_addr":"172.21.15.42:6831/623535187","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:35.119029+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:38.748681+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:42.603336+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:48.013099+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:49.525165+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:57.599425+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:08:55.892103+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:09:06.339949+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.42:0/3905319364":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/412282447":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3666215526":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3085978115":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/1162666148":"2024-09-18T11:05:38.076343+0000","172.21.15.42:6800/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:0/3153109724":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6801/3780942713":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/3625084255":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/3133573329":"2024-09-18T11:05:38.076343+0000","172.21.15.42:0/895368732":"2024-09-18T11:06:45.874684+0000","172.21.15.42:0/4172307696":"2024-09-18T11:05:02.154971+0000","172.21.15.42:6801/85994639":"2024-09-18T11:06:45.874684+0000","172.21.15.42:6800/85994639":"2024-09-18T11:06:45.874684+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-17T11:09:29.995 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:29 smithi042 ceph-mon[25856]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:29.995 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:29 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3644717485' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:30.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:29 smithi181 ceph-mon[34172]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:30.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:29 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3644717485' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:09:30.329 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T11:09:30.329 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T11:09:30.330 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T11:09:30.330 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T11:09:30.331 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T11:09:30.331 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T11:09:30.331 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-17T11:09:30.332 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-17T11:09:30.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:30 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:30.907 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:30 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:31.034 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:31.036 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:31.064 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:31.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:30 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:31.105 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:30 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:31.356 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:31.356 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:31.780 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:31 smithi042 ceph-mon[25856]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:31.781 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:32.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:31 smithi181 ceph-mon[34172]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:32.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:33.857 INFO:teuthology.orchestra.run.smithi042.stdout:128849018890 2024-09-17T11:09:33.857 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T11:09:33.937 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:33 smithi042 ceph-mon[25856]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:34.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:33 smithi181 ceph-mon[34172]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:34.727 INFO:teuthology.orchestra.run.smithi042.stdout:163208757257 2024-09-17T11:09:34.728 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T11:09:35.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:35 smithi042 ceph-mon[25856]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:35.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:35.883 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:35 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:36.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:35 smithi181 ceph-mon[34172]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:36.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:36.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:35 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:09:36.168 INFO:teuthology.orchestra.run.smithi042.stdout:98784247821 2024-09-17T11:09:36.169 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T11:09:36.731 INFO:teuthology.orchestra.run.smithi042.stdout:124554051595 2024-09-17T11:09:36.731 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T11:09:37.157 INFO:teuthology.orchestra.run.smithi042.stdout:154618822667 2024-09-17T11:09:37.158 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-17T11:09:37.207 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.213 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.536 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.539 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.540 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.541 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.542 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:37.910 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:37 smithi042 ceph-mon[25856]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:38.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:37 smithi181 ceph-mon[34172]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:39.197 INFO:teuthology.orchestra.run.smithi042.stdout:68719476752 2024-09-17T11:09:39.198 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T11:09:39.570 INFO:teuthology.orchestra.run.smithi042.stdout:163208757258 2024-09-17T11:09:39.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:39 smithi042 ceph-mon[25856]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:39.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:39 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2747462627' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-17T11:09:40.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:39 smithi181 ceph-mon[34172]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:40.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:39 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2747462627' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-17T11:09:40.608 INFO:teuthology.orchestra.run.smithi042.stdout:128849018891 2024-09-17T11:09:40.897 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:40 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2115300629' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-17T11:09:40.925 INFO:teuthology.orchestra.run.smithi042.stdout:85899345935 2024-09-17T11:09:40.925 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T11:09:41.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:40 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2115300629' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-17T11:09:41.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:41 smithi042 ceph-mon[25856]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:41.951 INFO:teuthology.orchestra.run.smithi042.stdout:98784247822 2024-09-17T11:09:42.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:41 smithi181 ceph-mon[34172]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:42.727 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247821 got 98784247822 for osd.2 2024-09-17T11:09:42.727 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:42.942 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:42 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2006223437' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-17T11:09:43.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:42 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2006223437' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-17T11:09:43.146 INFO:teuthology.orchestra.run.smithi042.stdout:124554051597 2024-09-17T11:09:43.743 INFO:teuthology.orchestra.run.smithi042.stdout:180388626442 2024-09-17T11:09:43.744 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-17T11:09:44.032 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:43 smithi042 ceph-mon[25856]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:44.033 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:43 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/338065438' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-17T11:09:44.061 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018890 got 128849018891 for osd.4 2024-09-17T11:09:44.061 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:44.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:43 smithi181 ceph-mon[34172]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:44.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:43 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/338065438' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-17T11:09:44.816 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757257 got 163208757258 for osd.5 2024-09-17T11:09:44.817 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:45.236 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051595 got 124554051597 for osd.3 2024-09-17T11:09:45.236 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:45.253 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:45.261 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:45.261 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:45.262 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:45.781 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:45 smithi042 ceph-mon[25856]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:46.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:45 smithi181 ceph-mon[34172]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:46.459 INFO:teuthology.orchestra.run.smithi042.stdout:68719476753 2024-09-17T11:09:46.535 INFO:teuthology.orchestra.run.smithi042.stdout:180388626443 2024-09-17T11:09:47.034 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:47.034 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:46 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3727667840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-17T11:09:47.034 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:46 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/369665783' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-17T11:09:47.058 INFO:teuthology.orchestra.run.smithi042.stdout:85899345936 2024-09-17T11:09:47.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:47.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:46 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3727667840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-17T11:09:47.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:46 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/369665783' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-17T11:09:47.585 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626442 got 180388626443 for osd.7 2024-09-17T11:09:47.585 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:47.808 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:47 smithi042 ceph-mon[25856]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:47.809 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:47 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/149599258' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-17T11:09:48.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:47 smithi181 ceph-mon[34172]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:48.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:47 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/149599258' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-17T11:09:48.363 INFO:teuthology.orchestra.run.smithi042.stdout:154618822669 2024-09-17T11:09:48.571 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476752 got 68719476753 for osd.0 2024-09-17T11:09:48.572 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:49.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:48 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3937134081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-17T11:09:49.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:48 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3937134081' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-17T11:09:49.193 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822667 got 154618822669 for osd.6 2024-09-17T11:09:49.193 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:49.722 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:49 smithi042 ceph-mon[25856]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:49.724 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345935 got 85899345936 for osd.1 2024-09-17T11:09:49.724 DEBUG:teuthology.parallel:result is None 2024-09-17T11:09:49.724 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T11:09:49.724 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T11:09:49.988 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:50.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:49 smithi181 ceph-mon[34172]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:50.685 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:50.685 INFO:teuthology.orchestra.run.smithi042.stderr:dumped all 2024-09-17T11:09:51.399 INFO:teuthology.orchestra.run.smithi042.stdout:{"pg_ready":true,"pg_map":{"version":126,"stamp":"2024-09-17T11:09:49.906639+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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":132,"ondisk_log_size":132,"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":225732,"kb_used_data":5324,"kb_used_omap":12,"kb_used_meta":220211,"kb_avail":749702716,"statfs":{"total":767926730752,"available":767695581184,"internally_reserved":0,"allocated":5451776,"data_stored":3273272,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":225496625},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002101"},"pg_stats":[{"pgid":"1.0","version":"25'132","reported_seq":186,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-17T11:09:11.476202+0000","last_change":"2024-09-17T11:09:11.475857+0000","last_active":"2024-09-17T11:09:11.476202+0000","last_peered":"2024-09-17T11:09:11.476202+0000","last_clean":"2024-09-17T11:09:11.476202+0000","last_became_active":"2024-09-17T11:09:11.475496+0000","last_became_peered":"2024-09-17T11:09:11.475496+0000","last_unstale":"2024-09-17T11:09:11.476202+0000","last_undegraded":"2024-09-17T11:09:11.476202+0000","last_fullsized":"2024-09-17T11:09:11.476202+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T11:08:44.723366+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T11:08:44.723366+0000","last_clean_scrub_stamp":"2024-09-17T11:08:44.723366+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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-18T22:41:41.721728+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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28056,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713000,"statfs":{"total":95990841344,"available":95962112000,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":38,"seq":163208757261,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":36,"seq":154618822670,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":30,"seq":128849018893,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27480,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713576,"statfs":{"total":95990841344,"available":95962701824,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":29,"seq":124554051599,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28056,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713000,"statfs":{"total":95990841344,"available":95962112000,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":23,"seq":98784247824,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27476,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713580,"statfs":{"total":95990841344,"available":95962705920,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345937,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27476,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713580,"statfs":{"total":95990841344,"available":95962705920,"internally_reserved":0,"allocated":458752,"data_stored":187771,"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":[]},{"osd":0,"up_from":16,"seq":68719476754,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32216,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708840,"statfs":{"total":95990841344,"available":95957852160,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"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":0,"data_stored":0,"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-17T11:09:51.400 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T11:09:51.663 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:51.955 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:51 smithi042 ceph-mon[25856]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:51.955 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:51 smithi042 ceph-mon[25856]: from='client.14606 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:52.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:51 smithi181 ceph-mon[34172]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:52.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:51 smithi181 ceph-mon[34172]: from='client.14606 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:52.364 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:52.364 INFO:teuthology.orchestra.run.smithi042.stderr:dumped all 2024-09-17T11:09:52.951 INFO:teuthology.orchestra.run.smithi042.stdout:{"pg_ready":true,"pg_map":{"version":127,"stamp":"2024-09-17T11:09:51.906949+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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":132,"ondisk_log_size":132,"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":225732,"kb_used_data":5324,"kb_used_omap":12,"kb_used_meta":220211,"kb_avail":749702716,"statfs":{"total":767926730752,"available":767695581184,"internally_reserved":0,"allocated":5451776,"data_stored":3273272,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":225496625},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002069"},"pg_stats":[{"pgid":"1.0","version":"25'132","reported_seq":186,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-09-17T11:09:11.476202+0000","last_change":"2024-09-17T11:09:11.475857+0000","last_active":"2024-09-17T11:09:11.476202+0000","last_peered":"2024-09-17T11:09:11.476202+0000","last_clean":"2024-09-17T11:09:11.476202+0000","last_became_active":"2024-09-17T11:09:11.475496+0000","last_became_peered":"2024-09-17T11:09:11.475496+0000","last_unstale":"2024-09-17T11:09:11.476202+0000","last_undegraded":"2024-09-17T11:09:11.476202+0000","last_fullsized":"2024-09-17T11:09:11.476202+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T11:08:44.723366+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T11:08:44.723366+0000","last_clean_scrub_stamp":"2024-09-17T11:08:44.723366+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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-18T22:41:41.721728+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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"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":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28056,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713000,"statfs":{"total":95990841344,"available":95962112000,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":38,"seq":163208757261,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27484,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713572,"statfs":{"total":95990841344,"available":95962697728,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":36,"seq":154618822670,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27488,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713568,"statfs":{"total":95990841344,"available":95962693632,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":30,"seq":128849018894,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27480,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713576,"statfs":{"total":95990841344,"available":95962701824,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":29,"seq":124554051599,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28056,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713000,"statfs":{"total":95990841344,"available":95962112000,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":23,"seq":98784247824,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27476,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713580,"statfs":{"total":95990841344,"available":95962705920,"internally_reserved":0,"allocated":458752,"data_stored":187771,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345938,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27476,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713580,"statfs":{"total":95990841344,"available":95962705920,"internally_reserved":0,"allocated":458752,"data_stored":187771,"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":[]},{"osd":0,"up_from":16,"seq":68719476754,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32216,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708840,"statfs":{"total":95990841344,"available":95957852160,"internally_reserved":0,"allocated":1052672,"data_stored":778139,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"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":0,"data_stored":0,"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-17T11:09:52.952 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T11:09:52.952 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T11:09:52.952 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T11:09:52.952 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T11:09:53.209 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:53.875 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:09:53.875 INFO:teuthology.orchestra.run.smithi042.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T11:09:54.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:53 smithi042 ceph-mon[25856]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:54.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:53 smithi042 ceph-mon[25856]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:54.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:53 smithi181 ceph-mon[34172]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:54.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:53 smithi181 ceph-mon[34172]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:54.576 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T11:09:54.576 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T11:09:54.576 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:09:54.590 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:09:54.590 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T11:09:54.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:54 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/3048143487' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-17T11:09:54.847 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:55.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:54 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/3048143487' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-17T11:09:55.531 INFO:teuthology.orchestra.run.smithi042.stdout:Backend: cephadm 2024-09-17T11:09:55.531 INFO:teuthology.orchestra.run.smithi042.stdout:Available: Yes 2024-09-17T11:09:55.532 INFO:teuthology.orchestra.run.smithi042.stdout:Paused: No 2024-09-17T11:09:55.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:55 smithi042 ceph-mon[25856]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:56.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:55 smithi181 ceph-mon[34172]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:56.279 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T11:09:56.540 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:56.918 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:56 smithi042 ceph-mon[25856]: from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:57.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:56 smithi181 ceph-mon[34172]: from='client.14618 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:57.213 INFO:teuthology.orchestra.run.smithi042.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T11:09:57.213 INFO:teuthology.orchestra.run.smithi042.stdout:alertmanager.smithi042 smithi042 *:9093,9094 running (2m) 44s ago 3m 19.0M - 0.27.0 11f11916f8cd 53ad8ad18931 2024-09-17T11:09:57.213 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter.smithi042 smithi042 running (3m) 44s ago 3m 7902k - 19.3.0-4937-g74984932 6c1fcab85602 b81fa9ffcae6 2024-09-17T11:09:57.213 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter.smithi181 smithi181 running (3m) 49s ago 3m 5322k - 19.3.0-4937-g74984932 6c1fcab85602 34883990566e 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:crash.smithi042 smithi042 running (3m) 44s ago 3m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 fefc87924753 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:crash.smithi181 smithi181 running (2m) 49s ago 2m 6895k - 19.3.0-4937-g74984932 6c1fcab85602 243d594ee123 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:grafana.smithi042 smithi042 *:3000 running (2m) 44s ago 3m 72.4M - 10.4.0 c8b91775d855 f6038254d7a3 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:mgr.smithi042.jxsumf smithi042 *:9283,8765,8443 running (5m) 44s ago 5m 509M - 19.3.0-4937-g74984932 6c1fcab85602 6ed5b51f9b33 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:mgr.smithi181.zcjreb smithi181 *:8443,9283,8765 running (2m) 49s ago 2m 456M - 19.3.0-4937-g74984932 6c1fcab85602 a02a765baee2 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:mon.smithi042 smithi042 running (5m) 44s ago 5m 52.0M 2048M 19.3.0-4937-g74984932 6c1fcab85602 f4a0d6c57545 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:mon.smithi181 smithi181 running (2m) 49s ago 2m 44.1M 2048M 19.3.0-4937-g74984932 6c1fcab85602 5b70ae815d48 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter.smithi042 smithi042 *:9100 running (3m) 44s ago 3m 10.3M - 1.7.0 72c9c2088986 cecc82e049d4 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter.smithi181 smithi181 *:9100 running (2m) 49s ago 2m 10.9M - 1.7.0 72c9c2088986 49a7fee0d7b5 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:osd.0 smithi181 running (88s) 49s ago 88s 46.6M 3727M 19.3.0-4937-g74984932 6c1fcab85602 1061d4344024 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:osd.1 smithi042 running (84s) 44s ago 84s 38.8M 2961M 19.3.0-4937-g74984932 6c1fcab85602 3bc454042afc 2024-09-17T11:09:57.214 INFO:teuthology.orchestra.run.smithi042.stdout:osd.2 smithi181 running (81s) 49s ago 80s 36.1M 3727M 19.3.0-4937-g74984932 6c1fcab85602 600a8da3e471 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:osd.3 smithi042 running (75s) 44s ago 74s 36.6M 2961M 19.3.0-4937-g74984932 6c1fcab85602 24697eb2c885 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:osd.4 smithi181 running (74s) 49s ago 73s 29.7M 3727M 19.3.0-4937-g74984932 6c1fcab85602 e3f2b74766a3 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:osd.5 smithi042 running (66s) 44s ago 65s 29.7M 2961M 19.3.0-4937-g74984932 6c1fcab85602 50692236f0bd 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:osd.6 smithi181 running (67s) 49s ago 66s 35.5M 3727M 19.3.0-4937-g74984932 6c1fcab85602 17e37f4cacec 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:osd.7 smithi042 running (57s) 44s ago 56s 27.8M 2961M 19.3.0-4937-g74984932 6c1fcab85602 3d6dd23945ee 2024-09-17T11:09:57.215 INFO:teuthology.orchestra.run.smithi042.stdout:prometheus.smithi042 smithi042 *:9095 running (2m) 44s ago 3m 39.8M - 2.51.0 1d3b7f56885b 52950eef2884 2024-09-17T11:09:57.922 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:57 smithi042 ceph-mon[25856]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:57.962 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T11:09:58.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:57 smithi181 ceph-mon[34172]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:58.223 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:09:58.912 INFO:teuthology.orchestra.run.smithi042.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T11:09:58.912 INFO:teuthology.orchestra.run.smithi042.stdout:alertmanager ?:9093,9094 1/1 45s ago 4m count:1 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter 2/2 50s ago 4m * 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:crash 2/2 50s ago 4m * 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:grafana ?:3000 1/1 45s ago 4m count:1 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:mgr 2/2 50s ago 4m count:2 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:mon 2/2 50s ago 3m smithi042:172.21.15.42=smithi042;smithi181:172.21.15.181=smithi181;count:2 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter ?:9100 2/2 50s ago 4m * 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:osd.all-available-devices 8 50s ago 2m * 2024-09-17T11:09:58.913 INFO:teuthology.orchestra.run.smithi042.stdout:prometheus ?:9095 1/1 45s ago 4m count:1 2024-09-17T11:09:58.913 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:58 smithi042 ceph-mon[25856]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:59.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:58 smithi181 ceph-mon[34172]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:59.650 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T11:09:59.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:09:59 smithi042 ceph-mon[25856]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:59.908 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:00.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:09:59 smithi181 ceph-mon[34172]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:00.587 INFO:teuthology.orchestra.run.smithi042.stdout:HOST ADDR LABELS STATUS 2024-09-17T11:10:00.587 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 172.21.15.42 2024-09-17T11:10:00.587 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 172.21.15.181 2024-09-17T11:10:00.587 INFO:teuthology.orchestra.run.smithi042.stdout:2 hosts in cluster 2024-09-17T11:10:00.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:00 smithi042 ceph-mon[25856]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:00.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:00 smithi042 ceph-mon[25856]: overall HEALTH_OK 2024-09-17T11:10:01.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:00 smithi181 ceph-mon[34172]: from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:01.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:00 smithi181 ceph-mon[34172]: overall HEALTH_OK 2024-09-17T11:10:01.283 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T11:10:01.550 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:02.015 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:01 smithi042 ceph-mon[25856]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:02.015 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:01 smithi042 ceph-mon[25856]: from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:02.015 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:01 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:02.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:01 smithi181 ceph-mon[34172]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:02.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:01 smithi181 ceph-mon[34172]: from='client.14630 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:02.097 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:01 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB75130021480DGN 447G No 43s ago Has a FileSystem, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme1n1 ssd Linux_91b7801d2db4c4d0c8b4 89.4G No 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme2n1 ssd Linux_1953e05d1dbf6988d6af 89.4G No 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme3n1 ssd Linux_54b6f036243e8099ec9a 89.4G No 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme4n1 ssd Linux_8e272929a1b4bc38c3b2 89.4G No 43s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6246000E400BGN 372G No 50s ago Has a FileSystem, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme1n1 ssd Linux_94ac30e8cb7ae907ca27 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme2n1 ssd Linux_167d8c63060398da59fe 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.198 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme3n1 ssd Linux_146ae7f5fa7f309beab6 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.199 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme4n1 ssd Linux_00cdd69817d9b638d0b1 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:02.893 INFO:teuthology.run_tasks:Running task vip... 2024-09-17T11:10:02.909 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-17T11:10:02.909 INFO:tasks.vip:peername 172.21.15.42 2024-09-17T11:10:02.913 INFO:tasks.vip:172.21.15.42 in 172.21.0.0/20, pos 3881 2024-09-17T11:10:02.917 INFO:tasks.vip:smithi042.front.sepia.ceph.com static 10.0.15.42, vnet 10.0.0.0/16 2024-09-17T11:10:02.917 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.42')] 2024-09-17T11:10:02.918 DEBUG:teuthology.orchestra.run.smithi042:> sudo ip route ls 2024-09-17T11:10:02.948 INFO:teuthology.orchestra.run.smithi042.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.42 metric 100 2024-09-17T11:10:02.948 INFO:teuthology.orchestra.run.smithi042.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.42 metric 100 2024-09-17T11:10:02.949 INFO:tasks.vip:Configuring 10.0.15.42 on smithi042.front.sepia.ceph.com iface ens1f0... 2024-09-17T11:10:02.950 DEBUG:teuthology.orchestra.run.smithi042:> sudo ip addr add 10.0.15.42/16 dev ens1f0 2024-09-17T11:10:03.019 INFO:tasks.vip:peername 172.21.15.181 2024-09-17T11:10:03.021 INFO:tasks.vip:172.21.15.181 in 172.21.0.0/20, pos 4020 2024-09-17T11:10:03.083 INFO:tasks.vip:smithi181.front.sepia.ceph.com static 10.0.15.181, vnet 10.0.0.0/16 2024-09-17T11:10:03.083 DEBUG:teuthology.orchestra.run.smithi181:> sudo ip route ls 2024-09-17T11:10:03.116 INFO:teuthology.orchestra.run.smithi181.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.181 metric 100 2024-09-17T11:10:03.116 INFO:teuthology.orchestra.run.smithi181.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.181 metric 100 2024-09-17T11:10:03.118 INFO:tasks.vip:Configuring 10.0.15.181 on smithi181.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T11:10:03.118 DEBUG:teuthology.orchestra.run.smithi181:> sudo ip addr add 10.0.15.181/16 dev enp3s0f1 2024-09-17T11:10:03.187 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:10:03.197 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:03.198 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-17T11:10:03.462 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:03.846 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:03 smithi042 ceph-mon[25856]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:03.847 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:03 smithi042 ceph-mon[25856]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:04.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:03 smithi181 ceph-mon[34172]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:04.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:03 smithi181 ceph-mon[34172]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:04.139 INFO:teuthology.orchestra.run.smithi042.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:10:04.139 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB75130021480DGN 447G No 45s ago Has a FileSystem, LVM detected 2024-09-17T11:10:04.139 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme1n1 ssd Linux_91b7801d2db4c4d0c8b4 89.4G No 45s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.139 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme2n1 ssd Linux_1953e05d1dbf6988d6af 89.4G No 45s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.139 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme3n1 ssd Linux_54b6f036243e8099ec9a 89.4G No 45s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme4n1 ssd Linux_8e272929a1b4bc38c3b2 89.4G No 45s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6246000E400BGN 372G No 52s ago Has a FileSystem, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme1n1 ssd Linux_94ac30e8cb7ae907ca27 89.4G No 52s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme2n1 ssd Linux_167d8c63060398da59fe 89.4G No 52s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme3n1 ssd Linux_146ae7f5fa7f309beab6 89.4G No 52s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.140 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme4n1 ssd Linux_00cdd69817d9b638d0b1 89.4G No 52s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:04.844 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:10:04.854 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:04.854 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T11:10:04.880 INFO:teuthology.orchestra.run.smithi042.stderr:+ systemctl stop nfs-server 2024-09-17T11:10:04.887 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi181.front.sepia.ceph.com 2024-09-17T11:10:04.888 DEBUG:teuthology.orchestra.run.smithi181:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T11:10:04.913 INFO:teuthology.orchestra.run.smithi181.stderr:+ systemctl stop nfs-server 2024-09-17T11:10:04.921 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:10:04.932 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:04.932 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-17T11:10:05.071 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:04 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:10:05.096 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:04 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:10:05.711 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:05.780 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:05 smithi181 ceph-mon[34172]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:05.780 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:05 smithi181 ceph-mon[34172]: from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:05.994 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:05 smithi042 ceph-mon[25856]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:05.994 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:05 smithi042 ceph-mon[25856]: from='client.14638 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:06.473 INFO:teuthology.orchestra.run.smithi042.stdout:Scheduled rgw.foorgw update... 2024-09-17T11:10:07.361 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.42/16' 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.562 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.563 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:07.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='client.14642 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:10:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:07.860 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:09.525 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:09 smithi042 ceph-mon[25856]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:09.526 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:09 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:10:09.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:09 smithi181 ceph-mon[34172]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:09.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:09 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: from='client.14646 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.42/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:10.338 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:10 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:10.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: from='client.14646 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.42/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:10.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:10:10.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T11:10:10.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-17T11:10:10.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:10.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:10 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:11.339 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:10:11.349 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:11.349 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-17T11:10:11.376 INFO:teuthology.orchestra.run.smithi042.stderr:+ dnf install -y python3-boto3 2024-09-17T11:10:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: pgmap v137: 33 pgs: 17 creating+peering, 15 unknown, 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:10:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T11:10:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T11:10:11.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: Saving service nfs.foo spec with placement count:1 2024-09-17T11:10:11.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:11.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T11:10:11.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:11 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:11.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: pgmap v137: 33 pgs: 17 creating+peering, 15 unknown, 1 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:11.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:10:11.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T11:10:11.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T11:10:11.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: Saving service nfs.foo spec with placement count:1 2024-09-17T11:10:11.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:11.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T11:10:11.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:11 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:11.995 INFO:teuthology.orchestra.run.smithi042.stdout:Last metadata expiration check: 0:07:21 ago on Tue 17 Sep 2024 11:02:50 AM UTC. 2024-09-17T11:10:12.156 INFO:teuthology.orchestra.run.smithi042.stdout:Dependencies resolved. 2024-09-17T11:10:12.157 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:10:12.157 INFO:teuthology.orchestra.run.smithi042.stdout: Package Arch Version Repository Size 2024-09-17T11:10:12.157 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:10:12.157 INFO:teuthology.orchestra.run.smithi042.stdout:Installing: 2024-09-17T11:10:12.157 INFO:teuthology.orchestra.run.smithi042.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout:Installing dependencies: 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:12.158 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction Summary 2024-09-17T11:10:12.159 INFO:teuthology.orchestra.run.smithi042.stdout:================================================================================ 2024-09-17T11:10:12.159 INFO:teuthology.orchestra.run.smithi042.stdout:Install 5 Packages 2024-09-17T11:10:12.159 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:12.203 INFO:teuthology.orchestra.run.smithi042.stdout:Total download size: 6.6 M 2024-09-17T11:10:12.203 INFO:teuthology.orchestra.run.smithi042.stdout:Installed size: 86 M 2024-09-17T11:10:12.203 INFO:teuthology.orchestra.run.smithi042.stdout:Downloading Packages: 2024-09-17T11:10:12.430 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:12 smithi042 ceph-mon[25856]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T11:10:12.430 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.430 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.431 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.431 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:12 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:12 smithi181 ceph-mon[34172]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T11:10:12.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:12 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:12.743 INFO:teuthology.orchestra.run.smithi042.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 2.6 MB/s | 164 kB 00:00 2024-09-17T11:10:12.827 INFO:teuthology.orchestra.run.smithi042.stdout:(2/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 1.4 MB/s | 215 kB 00:00 2024-09-17T11:10:12.894 INFO:teuthology.orchestra.run.smithi042.stdout:(3/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 235 kB/s | 50 kB 00:00 2024-09-17T11:10:12.953 INFO:teuthology.orchestra.run.smithi042.stdout:(4/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 901 kB/s | 113 kB 00:00 2024-09-17T11:10:13.061 INFO:teuthology.orchestra.run.smithi042.stdout:(5/5): python3-botocore-1.31.62-2.el9.noarch.rp 19 MB/s | 6.1 MB 00:00 2024-09-17T11:10:13.063 INFO:teuthology.orchestra.run.smithi042.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:10:13.063 INFO:teuthology.orchestra.run.smithi042.stdout:Total 7.7 MB/s | 6.6 MB 00:00 2024-09-17T11:10:13.087 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction check 2024-09-17T11:10:13.098 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction check succeeded. 2024-09-17T11:10:13.098 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction test 2024-09-17T11:10:13.234 INFO:teuthology.orchestra.run.smithi042.stdout:Transaction test succeeded. 2024-09-17T11:10:13.241 INFO:teuthology.orchestra.run.smithi042.stdout:Running transaction 2024-09-17T11:10:13.529 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:13 smithi042 ceph-mon[25856]: pgmap v140: 33 pgs: 19 creating+peering, 12 unknown, 2 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:13.530 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:13 smithi042 ceph-mon[25856]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:10:13.530 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:13 smithi042 ceph-mon[25856]: Cluster is now healthy 2024-09-17T11:10:13.530 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:13 smithi042 ceph-mon[25856]: mgrmap e20: smithi042.jxsumf(active, since 3m), standbys: smithi181.zcjreb 2024-09-17T11:10:13.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:13 smithi181 ceph-mon[34172]: pgmap v140: 33 pgs: 19 creating+peering, 12 unknown, 2 active+clean; 577 KiB data, 220 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:13.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:13 smithi181 ceph-mon[34172]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:10:13.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:13 smithi181 ceph-mon[34172]: Cluster is now healthy 2024-09-17T11:10:13.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:13 smithi181 ceph-mon[34172]: mgrmap e20: smithi042.jxsumf(active, since 3m), standbys: smithi181.zcjreb 2024-09-17T11:10:13.605 INFO:teuthology.orchestra.run.smithi042.stdout: Preparing : 1/1 2024-09-17T11:10:13.771 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-17T11:10:15.186 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-17T11:10:15.339 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-17T11:10:15.443 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-17T11:10:15.534 INFO:teuthology.orchestra.run.smithi042.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T11:10:15.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:15 smithi042 ceph-mon[25856]: pgmap v141: 33 pgs: 19 creating+peering, 14 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:15.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:15 smithi181 ceph-mon[34172]: pgmap v141: 33 pgs: 19 creating+peering, 14 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:17.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:17 smithi042 ceph-mon[25856]: pgmap v142: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:17.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:17 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:17.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:17 smithi181 ceph-mon[34172]: pgmap v142: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:17.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:17 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:17.870 INFO:teuthology.orchestra.run.smithi042.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T11:10:17.870 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-17T11:10:17.870 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-17T11:10:17.870 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-17T11:10:17.870 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout:Installed: 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-17T11:10:18.285 INFO:teuthology.orchestra.run.smithi042.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T11:10:18.286 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:18.286 INFO:teuthology.orchestra.run.smithi042.stdout:Complete! 2024-09-17T11:10:18.539 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:10:18.607 INFO:teuthology.orchestra.run.smithi042.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-17T11:10:18.851 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring fsid 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:10:18.921 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:19.046 INFO:teuthology.orchestra.run.smithi042.stderr:Using ceph image with id '6c1fcab85602' and tag '7498493279982dfe87f00616198a5967475f6169' created on 2024-09-15 22:19:23 +0000 UTC 2024-09-17T11:10:19.046 INFO:teuthology.orchestra.run.smithi042.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: pgmap v143: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:10:19.447 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi181.alewvj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi181.alewvj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:19.448 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:19 smithi042 ceph-mon[25856]: Deploying daemon rgw.foorgw.smithi181.alewvj on smithi181 2024-09-17T11:10:19.515 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: pgmap v143: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:19.515 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi181.alewvj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi181.alewvj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:19.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:19 smithi181 ceph-mon[34172]: Deploying daemon rgw.foorgw.smithi181.alewvj on smithi181 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: pgmap v144: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2542095766' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.417 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi042.edxepy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:21.418 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi042.edxepy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:21.418 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.418 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:21.418 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:21 smithi042 ceph-mon[25856]: Deploying daemon rgw.foorgw.smithi042.edxepy on smithi042 2024-09-17T11:10:21.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: pgmap v144: 33 pgs: 33 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2542095766' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi042.edxepy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi042.edxepy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:21.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:21 smithi181 ceph-mon[34172]: Deploying daemon rgw.foorgw.smithi042.edxepy on smithi042 2024-09-17T11:10:22.283 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:22 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2542095766' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T11:10:22.283 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:22 smithi042 ceph-mon[25856]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T11:10:22.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:22 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2542095766' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T11:10:22.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:22 smithi181 ceph-mon[34172]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T11:10:23.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:23 smithi042 ceph-mon[25856]: pgmap v147: 65 pgs: 5 creating+peering, 25 unknown, 35 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:23.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:23 smithi042 ceph-mon[25856]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T11:10:23.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:23 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:23.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:23 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:23.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:23 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:23.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:23 smithi181 ceph-mon[34172]: pgmap v147: 65 pgs: 5 creating+peering, 25 unknown, 35 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:10:23.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:23 smithi181 ceph-mon[34172]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T11:10:23.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:23 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:23.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:23 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:23.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:23 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.187 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Creating key for client.nfs.foo.0.0.smithi042.bmxeyk 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Rados config object exists: conf-nfs.foo 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Creating key for client.nfs.foo.0.0.smithi042.bmxeyk-rgw 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:24.188 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:24.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Bind address in nfs.foo.0.0.smithi042.bmxeyk's ganesha conf is defaulting to empty 2024-09-17T11:10:24.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:24.189 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:24 smithi042 ceph-mon[25856]: Deploying daemon nfs.foo.0.0.smithi042.bmxeyk on smithi042 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:24.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Creating key for client.nfs.foo.0.0.smithi042.bmxeyk 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 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-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Rados config object exists: conf-nfs.foo 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Creating key for client.nfs.foo.0.0.smithi042.bmxeyk-rgw 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi042.bmxeyk-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:10:24.598 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Bind address in nfs.foo.0.0.smithi042.bmxeyk's ganesha conf is defaulting to empty 2024-09-17T11:10:24.599 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:24.599 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:24 smithi181 ceph-mon[34172]: Deploying daemon nfs.foo.0.0.smithi042.bmxeyk on smithi042 2024-09-17T11:10:25.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: pgmap v150: 97 pgs: 12 creating+peering, 33 unknown, 52 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1023 B/s wr, 3 op/s 2024-09-17T11:10:25.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T11:10:25.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.322 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:25 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: pgmap v150: 97 pgs: 12 creating+peering, 33 unknown, 52 active+clean; 577 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1023 B/s wr, 3 op/s 2024-09-17T11:10:25.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T11:10:25.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:25.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:25 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:10:26.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:26 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:26 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:26 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:26 smithi042 ceph-mon[25856]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T11:10:26.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:26 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:26 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:26 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:10:26.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:26 smithi181 ceph-mon[34172]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T11:10:27.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: pgmap v153: 129 pgs: 23 creating+peering, 16 unknown, 90 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.5 KiB/s wr, 12 op/s 2024-09-17T11:10:27.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T11:10:27.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: Deploying daemon haproxy.nfs.foo.smithi042.fsgswf on smithi042 2024-09-17T11:10:27.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:27 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: pgmap v153: 129 pgs: 23 creating+peering, 16 unknown, 90 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.5 KiB/s wr, 12 op/s 2024-09-17T11:10:27.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T11:10:27.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: Deploying daemon haproxy.nfs.foo.smithi042.fsgswf on smithi042 2024-09-17T11:10:27.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:27 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:28 smithi042 ceph-mon[25856]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T11:10:28.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:10:28.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T11:10:28.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.181:0/777476360' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/1344582068' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: from='client.? ' entity='client.rgw.foorgw.smithi181.alewvj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:28.597 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:28 smithi181 ceph-mon[34172]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T11:10:29.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:29 smithi042 ceph-mon[25856]: pgmap v156: 161 pgs: 18 creating+peering, 31 unknown, 112 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 1.5 KiB/s wr, 8 op/s 2024-09-17T11:10:29.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:29 smithi181 ceph-mon[34172]: pgmap v156: 161 pgs: 18 creating+peering, 31 unknown, 112 active+clean; 578 KiB data, 221 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 1.5 KiB/s wr, 8 op/s 2024-09-17T11:10:30.000 INFO:teuthology.run_tasks:Running task python... 2024-09-17T11:10:30.012 INFO:tasks.python:Running python on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:30.012 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-17T11:10:30.012 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T11:10:31.305 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:31 smithi042 ceph-mon[25856]: pgmap v158: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 581 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 108 KiB/s rd, 6.1 KiB/s wr, 212 op/s 2024-09-17T11:10:31.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:31 smithi181 ceph-mon[34172]: pgmap v158: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 581 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 108 KiB/s rd, 6.1 KiB/s wr, 212 op/s 2024-09-17T11:10:32.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:32 smithi042 ceph-mon[25856]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T11:10:32.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:32 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-17T11:10:32.573 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:32 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:32.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:32 smithi181 ceph-mon[34172]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T11:10:32.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:32 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-17T11:10:32.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:32 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:33.289 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:33 smithi042 ceph-mon[25856]: pgmap v160: 193 pgs: 3 creating+peering, 29 unknown, 161 active+clean; 581 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 129 KiB/s rd, 6.1 KiB/s wr, 254 op/s 2024-09-17T11:10:33.290 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:33 smithi042 ceph-mon[25856]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:10:33.290 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:33 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T11:10:33.290 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:33 smithi042 ceph-mon[25856]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T11:10:33.290 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:33 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:33.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:33 smithi181 ceph-mon[34172]: pgmap v160: 193 pgs: 3 creating+peering, 29 unknown, 161 active+clean; 581 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 129 KiB/s rd, 6.1 KiB/s wr, 254 op/s 2024-09-17T11:10:33.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:33 smithi181 ceph-mon[34172]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:10:33.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:33 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T11:10:33.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:33 smithi181 ceph-mon[34172]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T11:10:33.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:33 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:10:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:34.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T11:10:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:34 smithi042 ceph-mon[25856]: Deploying daemon haproxy.nfs.foo.smithi181.orgolx on smithi181 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:34.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:34 smithi181 ceph-mon[34172]: Deploying daemon haproxy.nfs.foo.smithi181.orgolx on smithi181 2024-09-17T11:10:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:35 smithi042 ceph-mon[25856]: pgmap v163: 193 pgs: 3 creating+peering, 16 unknown, 174 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 177 KiB/s rd, 7.5 KiB/s wr, 350 op/s 2024-09-17T11:10:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:35 smithi042 ceph-mon[25856]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T11:10:35.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:35 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-17T11:10:35.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:35 smithi042 ceph-mon[25856]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:10:35.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:35 smithi042 ceph-mon[25856]: Cluster is now healthy 2024-09-17T11:10:35.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:35 smithi181 ceph-mon[34172]: pgmap v163: 193 pgs: 3 creating+peering, 16 unknown, 174 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 177 KiB/s rd, 7.5 KiB/s wr, 350 op/s 2024-09-17T11:10:35.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:35 smithi181 ceph-mon[34172]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T11:10:35.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:35 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-17T11:10:35.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:35 smithi181 ceph-mon[34172]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:10:35.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:35 smithi181 ceph-mon[34172]: Cluster is now healthy 2024-09-17T11:10:36.292 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:10:36.302 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:10:36.302 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-09-17T11:10:36.568 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:36.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:36 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T11:10:36.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:36 smithi042 ceph-mon[25856]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T11:10:36.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:36 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-17T11:10:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:36 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T11:10:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:36 smithi181 ceph-mon[34172]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T11:10:36.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:36 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout:{ 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout: "bind": "/foouser", 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout: "cluster": "foo", 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout: "mode": "RW", 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout: "path": "/", 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout: "squash": "none" 2024-09-17T11:10:37.425 INFO:teuthology.orchestra.run.smithi042.stdout:} 2024-09-17T11:10:37.515 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:37 smithi181 ceph-mon[34172]: pgmap v166: 225 pgs: 18 creating+peering, 17 unknown, 190 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 70 KiB/s rd, 2.2 KiB/s wr, 139 op/s 2024-09-17T11:10:37.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:37 smithi181 ceph-mon[34172]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T11:10:37.516 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:37 smithi181 ceph-mon[34172]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T11:10:37.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:37 smithi042 ceph-mon[25856]: pgmap v166: 225 pgs: 18 creating+peering, 17 unknown, 190 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 70 KiB/s rd, 2.2 KiB/s wr, 139 op/s 2024-09-17T11:10:37.570 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:37 smithi042 ceph-mon[25856]: from='client.? 172.21.15.42:0/2983419238' entity='client.rgw.foorgw.smithi042.edxepy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T11:10:37.570 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:37 smithi042 ceph-mon[25856]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T11:10:38.212 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T11:10:38.222 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-17T11:10:38.223 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:38.487 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:38.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:38 smithi042 ceph-mon[25856]: from='client.14704 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:38.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:38 smithi181 ceph-mon[34172]: from='client.14704 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:39.306 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:39.306 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:33.350708Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:39.306 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:39 smithi042 ceph-mon[25856]: pgmap v168: 225 pgs: 15 creating+peering, 5 unknown, 205 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 27 op/s 2024-09-17T11:10:39.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:39 smithi181 ceph-mon[34172]: pgmap v168: 225 pgs: 15 creating+peering, 5 unknown, 205 active+clean; 583 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 27 op/s 2024-09-17T11:10:40.035 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:40.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:40.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: 10.0.31.42 is in 10.0.0.0/16 on smithi181 interface enp3s0f1 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: 10.0.31.42 is in 10.0.0.0/16 on smithi042 interface ens1f0 2024-09-17T11:10:40.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:40 smithi042 ceph-mon[25856]: Deploying daemon keepalived.nfs.foo.smithi181.jmvdlc on smithi181 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: 10.0.31.42 is in 10.0.0.0/16 on smithi181 interface enp3s0f1 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: 10.0.31.42 is in 10.0.0.0/16 on smithi042 interface ens1f0 2024-09-17T11:10:40.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:40 smithi181 ceph-mon[34172]: Deploying daemon keepalived.nfs.foo.smithi181.jmvdlc on smithi181 2024-09-17T11:10:41.036 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:41.311 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:41.743 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:41 smithi042 ceph-mon[25856]: pgmap v169: 225 pgs: 6 creating+peering, 219 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 9.0 KiB/s rd, 1.2 KiB/s wr, 16 op/s 2024-09-17T11:10:41.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:41 smithi181 ceph-mon[34172]: pgmap v169: 225 pgs: 6 creating+peering, 219 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 9.0 KiB/s rd, 1.2 KiB/s wr, 16 op/s 2024-09-17T11:10:41.948 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:41.948 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:39.416192Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:42.890 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:43.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:43 smithi181 ceph-mon[34172]: pgmap v170: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 929 B/s wr, 18 op/s 2024-09-17T11:10:43.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:43 smithi181 ceph-mon[34172]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:43.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:43 smithi042 ceph-mon[25856]: pgmap v170: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 929 B/s wr, 18 op/s 2024-09-17T11:10:43.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:43 smithi042 ceph-mon[25856]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:43.891 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:44.166 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:45.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:45 smithi042 ceph-mon[25856]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 705 B/s wr, 16 op/s 2024-09-17T11:10:45.604 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:45.604 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:45.550954Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:45.701 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:45 smithi181 ceph-mon[34172]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 705 B/s wr, 16 op/s 2024-09-17T11:10:46.407 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:46.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: 10.0.31.42 is in 10.0.0.0/16 on smithi042 interface ens1f0 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: 10.0.31.42 is in 10.0.0.0/16 on smithi181 interface enp3s0f1 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: Deploying daemon keepalived.nfs.foo.smithi042.ovmexq on smithi042 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]} : dispatch 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]} : dispatch 2024-09-17T11:10:46.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:46 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: 10.0.31.42 is in 10.0.0.0/16 on smithi042 interface ens1f0 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: 10.0.31.42 is in 10.0.0.0/16 on smithi181 interface enp3s0f1 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: Deploying daemon keepalived.nfs.foo.smithi042.ovmexq on smithi042 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]} : dispatch 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]} : dispatch 2024-09-17T11:10:46.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:46 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:47.409 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:47.691 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:47.818 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:47 smithi042 ceph-mon[25856]: pgmap v172: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 9.3 KiB/s rd, 614 B/s wr, 14 op/s 2024-09-17T11:10:47.818 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-09-17T11:10:47.818 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:47 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]': finished 2024-09-17T11:10:47.818 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:47 smithi042 ceph-mon[25856]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T11:10:47.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:47 smithi181 ceph-mon[34172]: pgmap v172: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 9.3 KiB/s rd, 614 B/s wr, 14 op/s 2024-09-17T11:10:47.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-09-17T11:10:47.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:47 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]': finished 2024-09-17T11:10:47.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:47 smithi181 ceph-mon[34172]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T11:10:48.679 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:48 smithi042 ceph-mon[25856]: osdmap e66: 8 total, 8 up, 8 in 2024-09-17T11:10:48.679 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:48.680 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:45.550954Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:48.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:48 smithi181 ceph-mon[34172]: osdmap e66: 8 total, 8 up, 8 in 2024-09-17T11:10:49.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:49 smithi042 ceph-mon[25856]: pgmap v175: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 4.9 KiB/s rd, 0 B/s wr, 7 op/s 2024-09-17T11:10:49.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:49 smithi042 ceph-mon[25856]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:49.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:49 smithi181 ceph-mon[34172]: pgmap v175: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 4.9 KiB/s rd, 0 B/s wr, 7 op/s 2024-09-17T11:10:49.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:49 smithi181 ceph-mon[34172]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:50.634 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:51.636 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:51.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:51 smithi042 ceph-mon[25856]: pgmap v176: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2024-09-17T11:10:51.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:51 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:51.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:51 smithi181 ceph-mon[34172]: pgmap v176: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2024-09-17T11:10:51.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:51 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:52.135 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:53.036 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:53.037 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:45.550954Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:53.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:53 smithi042 ceph-mon[25856]: pgmap v177: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:10:53.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:53 smithi181 ceph-mon[34172]: pgmap v177: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:10:54.099 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:54.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:54.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:54 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:54.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:54 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:10:55.100 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:55.549 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:55.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:55 smithi042 ceph-mon[25856]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:10:55.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:55 smithi181 ceph-mon[34172]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:10:56.273 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:56.274 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:06.232153Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:06.232244Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:54.386326Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:06.232390Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:06.232461Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:06.232319Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:06.232532Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:10:57.072 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:10:57.723 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:57 smithi181 ceph-mon[34172]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-09-17T11:10:57.723 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:57 smithi181 ceph-mon[34172]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:57.723 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:57 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:57.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:57 smithi042 ceph-mon[25856]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 op/s 2024-09-17T11:10:57.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:57 smithi042 ceph-mon[25856]: from='client.14750 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:10:57.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:57 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:58.073 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:10:58.673 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:10:59.229 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:59 smithi042 ceph-mon[25856]: pgmap v180: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-09-17T11:10:59.229 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:59.229 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:10:59 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:59.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:59 smithi181 ceph-mon[34172]: pgmap v180: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2024-09-17T11:10:59.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:59.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:10:59 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:10:59.625 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:10:59.625 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:11.447376Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:11.447448Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:54.386326Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "last_refresh": "2024-09-17T11:10:58.021670Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:11.447299Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:11.447202Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:11.447519Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:11.447794Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "last_refresh": "2024-09-17T11:10:58.021602Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T11:11:00.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:00 smithi042 ceph-mon[25856]: from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:00.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:00 smithi181 ceph-mon[34172]: from='client.14754 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:00.451 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:11:01.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:01 smithi042 ceph-mon[25856]: pgmap v181: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:01.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:01 smithi181 ceph-mon[34172]: pgmap v181: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:01.452 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:11:02.121 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:02.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:02 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:02.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:02 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:02.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:02 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:02.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:02 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:02.829 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:11:02.829 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:10:11.447589Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:11.447376Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:11.447448Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:10:11.447657Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:54.386326Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "last_refresh": "2024-09-17T11:10:58.021670Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:11.447299Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:11.447202Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:10:26.251657Z 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-17T11:10:10.274903Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:11.447519Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:11.447794Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:10:11.447726Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "last_refresh": "2024-09-17T11:10:58.021602Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T11:11:03.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:03 smithi042 ceph-mon[25856]: pgmap v182: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:03.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:03 smithi181 ceph-mon[34172]: pgmap v182: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:03.968 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:11:04.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:04 smithi042 ceph-mon[25856]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:04.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:04 smithi181 ceph-mon[34172]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:04.969 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:11:05.244 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:05.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:05 smithi042 ceph-mon[25856]: pgmap v183: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:05.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:05 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:05.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:05 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:05.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:05 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:05.661 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:05 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:05.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:05 smithi181 ceph-mon[34172]: pgmap v183: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:05.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:05 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:05.702 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:05 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:05.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:05 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:05.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:05 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:05.983 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:11:05.983 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:11:04.798501Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:58.020954Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:58.021049Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:11:04.798574Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:54.386326Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "last_refresh": "2024-09-17T11:10:58.021670Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:58.021194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:58.021262Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:11:05.579145Z 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-17T11:10:10.274903Z", "last_refresh": "2024-09-17T11:11:04.799100Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:58.021124Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:58.021331Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:11:04.798645Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "last_refresh": "2024-09-17T11:10:58.021602Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T11:11:06.624 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: Checking dashboard <-> RGW credentials 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: Reconfiguring prometheus.smithi042 (dependencies changed)... 2024-09-17T11:11:06.625 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:06 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:11:06.664 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-17T11:11:06.664 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T11:11:06.675 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-17T11:11:06.675 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:11:06.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: Checking dashboard <-> RGW credentials 2024-09-17T11:11:06.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:06.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:06.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: Reconfiguring prometheus.smithi042 (dependencies changed)... 2024-09-17T11:11:06.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:06 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:11:07.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: Reconfiguring daemon prometheus.smithi042 on smithi042 2024-09-17T11:11:07.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: pgmap v184: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:07.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:07.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:11:07.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:11:07.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:07 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: Reconfiguring daemon prometheus.smithi042 on smithi042 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: pgmap v184: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: from='client.14798 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:11:08.052 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:07 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:11:09.113 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:09.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:09 smithi042 ceph-mon[25856]: pgmap v185: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:09.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:09 smithi181 ceph-mon[34172]: pgmap v185: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:10.332 INFO:teuthology.orchestra.run.smithi042.stdout: 2024-09-17T11:11:10.333 INFO:teuthology.orchestra.run.smithi042.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:05:28.236197Z", "last_refresh": "2024-09-17T11:11:04.798501Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:06:55.792982Z 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-17T11:05:21.654236Z", "last_refresh": "2024-09-17T11:10:58.020954Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:58.634961Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:05:20.256443Z", "last_refresh": "2024-09-17T11:10:58.021049Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:05:25.754315Z", "last_refresh": "2024-09-17T11:11:04.798574Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:54.386326Z 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.42/16"}, "status": {"created": "2024-09-17T11:10:10.279327Z", "last_refresh": "2024-09-17T11:10:58.021670Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.42/16"}}, {"events": ["2024-09-17T11:07:06.093629Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:05:18.595522Z", "last_refresh": "2024-09-17T11:10:58.021194Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:15.484405Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi042:172.21.15.42=smithi042", "smithi181:172.21.15.181=smithi181"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:06:05.736674Z", "last_refresh": "2024-09-17T11:10:58.021262Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:11:05.579145Z 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-17T11:10:10.274903Z", "last_refresh": "2024-09-17T11:11:04.799100Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:07:02.847531Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:05:27.027311Z", "last_refresh": "2024-09-17T11:10:58.021124Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:07:21.363748Z 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-17T11:07:21.360325Z", "last_refresh": "2024-09-17T11:10:58.021331Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:07:15.489141Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:05:23.640017Z", "last_refresh": "2024-09-17T11:11:04.798645Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:10:23.424454Z 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-17T11:10:23.419889Z", "last_refresh": "2024-09-17T11:10:58.021602Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T11:11:11.644 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:11 smithi042 ceph-mon[25856]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T11:11:11.645 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:11 smithi042 ceph-mon[25856]: from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:11.677 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-17T11:11:11.677 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:11:11.687 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:11:11.687 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-17T11:11:11.717 INFO:teuthology.orchestra.run.smithi042.stderr:+ mkdir /mnt/foo 2024-09-17T11:11:11.727 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-17T11:11:11.794 INFO:teuthology.orchestra.run.smithi042.stderr:+ sleep 5 2024-09-17T11:11:11.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:11 smithi181 ceph-mon[34172]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 341 B/s wr, 1 op/s 2024-09-17T11:11:11.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:11 smithi181 ceph-mon[34172]: from='client.14802 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:11:13.771 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:13 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:11:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:13.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:11:13.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:11:13.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:13 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:11:15.703 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:15 smithi181 ceph-mon[34172]: pgmap v188: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:15.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:15 smithi042 ceph-mon[25856]: pgmap v188: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:16.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:16 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:16.798 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.42:/foouser /mnt/foo' 2024-09-17T11:11:16.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:16 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:16.866 INFO:teuthology.orchestra.run.smithi042.stderr:+ mount -t nfs 10.0.31.42:/foouser /mnt/foo 2024-09-17T11:11:17.503 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2024-09-17T11:11:17.569 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:17 smithi042 ceph-mon[25856]: pgmap v189: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:17.574 INFO:teuthology.orchestra.run.smithi042.stderr:+ test -d /mnt/foo/foobucket 2024-09-17T11:11:17.579 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-17T11:11:17.649 INFO:teuthology.orchestra.run.smithi042.stderr:+ find /mnt/foo -ls 2024-09-17T11:11:17.654 INFO:teuthology.orchestra.run.smithi042.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Sep 17 11:10 /mnt/foo 2024-09-17T11:11:17.654 INFO:teuthology.orchestra.run.smithi042.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Sep 17 11:10 /mnt/foo/foobucket 2024-09-17T11:11:17.654 INFO:teuthology.orchestra.run.smithi042.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 17 11:10 /mnt/foo/foobucket/myobject 2024-09-17T11:11:17.656 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2024-09-17T11:11:17.723 INFO:teuthology.orchestra.run.smithi042.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2024-09-17T11:11:17.726 INFO:teuthology.orchestra.run.smithi042.stdout:thebody 2024-09-17T11:11:17.728 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2024-09-17T11:11:17.793 INFO:teuthology.orchestra.run.smithi042.stderr:+ echo test 2024-09-17T11:11:17.808 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-17T11:11:17.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:17 smithi181 ceph-mon[34172]: pgmap v189: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:17.873 INFO:teuthology.orchestra.run.smithi042.stderr:+ sync 2024-09-17T11:11:19.571 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:19 smithi042 ceph-mon[25856]: pgmap v190: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:19.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:19.572 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:19 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:19.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:19 smithi181 ceph-mon[34172]: pgmap v190: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-17T11:11:19.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:19.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:19 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:19.749 INFO:teuthology.run_tasks:Running task python... 2024-09-17T11:11:19.765 INFO:tasks.python:Running python on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:11:19.765 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-17T11:11:19.765 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T11:11:20.080 INFO:teuthology.orchestra.run.smithi042.stdout:b'test\n' 2024-09-17T11:11:20.130 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:11:20.143 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:11:20.143 DEBUG:teuthology.orchestra.run.smithi042:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-17T11:11:20.168 INFO:teuthology.orchestra.run.smithi042.stderr:+ umount /mnt/foo 2024-09-17T11:11:20.181 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:11:20.195 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:11:20.195 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export rm foo /foouser' 2024-09-17T11:11:20.944 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:21.321 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:21 smithi042 ceph-mon[25856]: pgmap v191: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 6.9 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-17T11:11:21.352 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:21 smithi181 ceph-mon[34172]: pgmap v191: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 6.9 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-17T11:11:22.867 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-17T11:11:23.127 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:23.248 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='client.14806 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:23.248 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: pgmap v192: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-17T11:11:23.248 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: Checking dashboard <-> RGW credentials 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:23.249 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:23 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='client.14806 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:23.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: pgmap v192: 225 pgs: 225 active+clean; 584 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-17T11:11:23.346 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: Checking dashboard <-> RGW credentials 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:23.347 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:23 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:24.607 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:11:24.622 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:11:24.622 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-17T11:11:25.132 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: from='client.14834 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:25.133 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: Remove service ingress.nfs.foo 2024-09-17T11:11:25.133 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:25.133 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: Remove service nfs.foo 2024-09-17T11:11:25.133 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:11:25.133 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:25.134 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:24 smithi042 ceph-mon[25856]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: from='client.14834 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: Remove service ingress.nfs.foo 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: Remove service nfs.foo 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:11:25.272 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:25.273 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:24 smithi181 ceph-mon[34172]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 231 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-17T11:11:25.503 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:26.005 INFO:teuthology.orchestra.run.smithi042.stdout:167 167 2024-09-17T11:11:26.690 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T11:11:27.245 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:26 smithi042 ceph-mon[25856]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-17T11:11:27.262 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:26 smithi181 ceph-mon[34172]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-17T11:11:27.454 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:28.136 INFO:teuthology.orchestra.run.smithi042.stdout:Backend: cephadm 2024-09-17T11:11:28.136 INFO:teuthology.orchestra.run.smithi042.stdout:Available: Yes 2024-09-17T11:11:28.136 INFO:teuthology.orchestra.run.smithi042.stdout:Paused: No 2024-09-17T11:11:28.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:28.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:28 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:28.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:28.860 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:28 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:28.861 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T11:11:29.466 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:29 smithi042 ceph-mon[25856]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 15 op/s 2024-09-17T11:11:29.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:29 smithi042 ceph-mon[25856]: from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:29.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:29 smithi181 ceph-mon[34172]: pgmap v195: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 15 op/s 2024-09-17T11:11:29.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:29 smithi181 ceph-mon[34172]: from='client.14838 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:30.450 INFO:teuthology.orchestra.run.smithi042.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T11:11:30.450 INFO:teuthology.orchestra.run.smithi042.stdout:alertmanager.smithi042 smithi042 *:9093,9094 running (4m) 8s ago 5m 19.0M - 0.27.0 11f11916f8cd 53ad8ad18931 2024-09-17T11:11:30.450 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter.smithi042 smithi042 running (5m) 8s ago 5m 8422k - 19.3.0-4937-g74984932 6c1fcab85602 b81fa9ffcae6 2024-09-17T11:11:30.450 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter.smithi181 smithi181 running (4m) 2s ago 4m 5322k - 19.3.0-4937-g74984932 6c1fcab85602 34883990566e 2024-09-17T11:11:30.450 INFO:teuthology.orchestra.run.smithi042.stdout:crash.smithi042 smithi042 running (5m) 8s ago 5m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 fefc87924753 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:crash.smithi181 smithi181 running (4m) 2s ago 4m 6895k - 19.3.0-4937-g74984932 6c1fcab85602 243d594ee123 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:grafana.smithi042 smithi042 *:3000 running (3m) 8s ago 5m 78.3M - 10.4.0 c8b91775d855 f6038254d7a3 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:haproxy.nfs.foo.smithi042.fsgswf smithi042 *:2049,9049 running (57s) 8s ago 57s 6409k - 2.3.17-d1c9119 e85424b0d443 437f2a5bfa27 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:haproxy.nfs.foo.smithi181.orgolx smithi181 *:2049,9049 running (51s) 2s ago 51s 4396k - 2.3.17-d1c9119 e85424b0d443 b87dea0e385e 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:keepalived.nfs.foo.smithi042.ovmexq smithi042 running (37s) 8s ago 36s 1602k - 2.2.4 4a3a1ff181d9 38ebcf185deb 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:keepalived.nfs.foo.smithi181.jmvdlc smithi181 running (45s) 2s ago 44s 1602k - 2.2.4 4a3a1ff181d9 8070fa8b28e3 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:mgr.smithi042.jxsumf smithi042 *:9283,8765,8443 running (6m) 8s ago 6m 526M - 19.3.0-4937-g74984932 6c1fcab85602 6ed5b51f9b33 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:mgr.smithi181.zcjreb smithi181 *:8443,9283,8765 running (4m) 2s ago 4m 457M - 19.3.0-4937-g74984932 6c1fcab85602 a02a765baee2 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:mon.smithi042 smithi042 running (6m) 8s ago 6m 50.3M 2048M 19.3.0-4937-g74984932 6c1fcab85602 f4a0d6c57545 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:mon.smithi181 smithi181 running (4m) 2s ago 4m 40.2M 2048M 19.3.0-4937-g74984932 6c1fcab85602 5b70ae815d48 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:nfs.foo.0.0.smithi042.bmxeyk smithi042 *:12049 running (64s) 8s ago 64s 101M - 5.9 6c1fcab85602 a7f5664d075e 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter.smithi042 smithi042 *:9100 running (5m) 8s ago 5m 10.1M - 1.7.0 72c9c2088986 cecc82e049d4 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter.smithi181 smithi181 *:9100 running (4m) 2s ago 4m 9.89M - 1.7.0 72c9c2088986 49a7fee0d7b5 2024-09-17T11:11:30.451 INFO:teuthology.orchestra.run.smithi042.stdout:osd.0 smithi181 running (3m) 2s ago 3m 59.7M 3727M 19.3.0-4937-g74984932 6c1fcab85602 1061d4344024 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.1 smithi042 running (2m) 8s ago 2m 49.1M 2961M 19.3.0-4937-g74984932 6c1fcab85602 3bc454042afc 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.2 smithi181 running (2m) 2s ago 2m 48.2M 3727M 19.3.0-4937-g74984932 6c1fcab85602 600a8da3e471 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.3 smithi042 running (2m) 8s ago 2m 50.8M 2961M 19.3.0-4937-g74984932 6c1fcab85602 24697eb2c885 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.4 smithi181 running (2m) 2s ago 2m 46.4M 3727M 19.3.0-4937-g74984932 6c1fcab85602 e3f2b74766a3 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.5 smithi042 running (2m) 8s ago 2m 45.8M 2961M 19.3.0-4937-g74984932 6c1fcab85602 50692236f0bd 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.6 smithi181 running (2m) 2s ago 2m 52.5M 3727M 19.3.0-4937-g74984932 6c1fcab85602 17e37f4cacec 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:osd.7 smithi042 running (2m) 8s ago 2m 46.3M 2961M 19.3.0-4937-g74984932 6c1fcab85602 3d6dd23945ee 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:prometheus.smithi042 smithi042 *:9095 running (18s) 8s ago 4m 33.0M - 2.51.0 1d3b7f56885b f453e128b5e6 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:rgw.foorgw.smithi042.edxepy smithi042 *:8800 running (67s) 8s ago 67s 76.2M - 19.3.0-4937-g74984932 6c1fcab85602 cb71f8580deb 2024-09-17T11:11:30.452 INFO:teuthology.orchestra.run.smithi042.stdout:rgw.foorgw.smithi181.alewvj smithi181 *:8800 running (70s) 2s ago 69s 77.6M - 19.3.0-4937-g74984932 6c1fcab85602 7018b1fd408b 2024-09-17T11:11:31.261 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T11:11:31.831 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:31 smithi042 ceph-mon[25856]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 15 op/s 2024-09-17T11:11:31.832 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:31 smithi042 ceph-mon[25856]: from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:31.832 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:31 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:31.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:31 smithi181 ceph-mon[34172]: pgmap v196: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 682 B/s wr, 15 op/s 2024-09-17T11:11:31.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:31 smithi181 ceph-mon[34172]: from='client.14842 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:31.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:31 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:11:32.041 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:32.690 INFO:teuthology.orchestra.run.smithi042.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:alertmanager ?:9093,9094 1/1 10s ago 6m count:1 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:ceph-exporter 2/2 10s ago 6m * 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:crash 2/2 10s ago 6m * 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:grafana ?:3000 1/1 10s ago 6m count:1 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:ingress.nfs.foo 10.0.31.42:2049,9049 4/4 82s count:2 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:mgr 2/2 10s ago 6m count:2 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:mon 2/2 10s ago 5m smithi042:172.21.15.42=smithi042;smithi181:172.21.15.181=smithi181;count:2 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:nfs.foo ?:12049 1/1 82s count:1 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:node-exporter ?:9100 2/2 10s ago 6m * 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:osd.all-available-devices 8 10s ago 4m * 2024-09-17T11:11:32.691 INFO:teuthology.orchestra.run.smithi042.stdout:prometheus ?:9095 1/1 10s ago 6m count:1 2024-09-17T11:11:32.692 INFO:teuthology.orchestra.run.smithi042.stdout:rgw.foorgw ?:8800 2/2 10s ago 69s count:2 2024-09-17T11:11:33.466 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T11:11:33.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:33 smithi042 ceph-mon[25856]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.7 KiB/s rd, 682 B/s wr, 10 op/s 2024-09-17T11:11:33.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:33 smithi042 ceph-mon[25856]: from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:33.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:33 smithi181 ceph-mon[34172]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.7 KiB/s rd, 682 B/s wr, 10 op/s 2024-09-17T11:11:33.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:33 smithi181 ceph-mon[34172]: from='client.14846 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:34.252 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:34.925 INFO:teuthology.orchestra.run.smithi042.stdout:HOST ADDR LABELS STATUS 2024-09-17T11:11:34.925 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 172.21.15.42 2024-09-17T11:11:34.925 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 172.21.15.181 2024-09-17T11:11:34.925 INFO:teuthology.orchestra.run.smithi042.stdout:2 hosts in cluster 2024-09-17T11:11:35.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:35 smithi181 ceph-mon[34172]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 255 B/s wr, 2 op/s 2024-09-17T11:11:36.015 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:35 smithi042 ceph-mon[25856]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 255 B/s wr, 2 op/s 2024-09-17T11:11:36.057 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T11:11:36.802 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:36.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:36 smithi042 ceph-mon[25856]: from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:36.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:36 smithi181 ceph-mon[34172]: from='client.14850 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB75130021480DGN 447G No 79s ago Has a FileSystem, LVM detected 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme1n1 ssd Linux_91b7801d2db4c4d0c8b4 89.4G No 79s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme2n1 ssd Linux_1953e05d1dbf6988d6af 89.4G No 79s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme3n1 ssd Linux_54b6f036243e8099ec9a 89.4G No 79s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.467 INFO:teuthology.orchestra.run.smithi042.stdout:smithi042 /dev/nvme4n1 ssd Linux_8e272929a1b4bc38c3b2 89.4G No 79s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.468 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6246000E400BGN 372G No 87s ago Has a FileSystem, LVM detected 2024-09-17T11:11:37.468 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme1n1 ssd Linux_94ac30e8cb7ae907ca27 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.468 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme2n1 ssd Linux_167d8c63060398da59fe 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.468 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme3n1 ssd Linux_146ae7f5fa7f309beab6 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.468 INFO:teuthology.orchestra.run.smithi042.stdout:smithi181 /dev/nvme4n1 ssd Linux_00cdd69817d9b638d0b1 89.4G No 87s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:11:37.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 853 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:37 smithi042 ceph-mon[25856]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:37.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 853 B/s rd, 170 B/s wr, 1 op/s 2024-09-17T11:11:37.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:11:37.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:11:37.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' 2024-09-17T11:11:37.847 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:37 smithi181 ceph-mon[34172]: from='mgr.14229 172.21.15.42:0/3858508119' entity='mgr.smithi042.jxsumf' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:11:38.175 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 82491f84-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-17T11:11:38.440 INFO:teuthology.orchestra.run.smithi042.stderr:Inferring config /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/mon.smithi042/config 2024-09-17T11:11:38.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:38 smithi042 ceph-mon[25856]: Removing orphan daemon nfs.foo.0.0.smithi042.bmxeyk... 2024-09-17T11:11:38.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:38 smithi042 ceph-mon[25856]: Removing daemon nfs.foo.0.0.smithi042.bmxeyk from smithi042 -- ports [12049] 2024-09-17T11:11:38.822 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:38 smithi042 ceph-mon[25856]: from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:38.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:38 smithi181 ceph-mon[34172]: Removing orphan daemon nfs.foo.0.0.smithi042.bmxeyk... 2024-09-17T11:11:38.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:38 smithi181 ceph-mon[34172]: Removing daemon nfs.foo.0.0.smithi042.bmxeyk from smithi042 -- ports [12049] 2024-09-17T11:11:38.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:38 smithi181 ceph-mon[34172]: from='client.14854 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:11:39.145 INFO:teuthology.orchestra.run.smithi042.stdout:osd.all-available-devices 8 11s ago 4m * 2024-09-17T11:11:39.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:39 smithi042 ceph-mon[25856]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:39.846 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:39 smithi181 ceph-mon[34172]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:11:39.858 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-17T11:11:39.873 INFO:tasks.vip:Removing 10.0.15.42 (and any VIPs) on smithi042.front.sepia.ceph.com iface ens1f0... 2024-09-17T11:11:39.873 DEBUG:teuthology.orchestra.run.smithi042:> sudo ip addr del 10.0.15.42/16 dev ens1f0 2024-09-17T11:11:39.904 DEBUG:teuthology.orchestra.run.smithi042:> sudo ip addr del 10.0.31.42/16 dev ens1f0 2024-09-17T11:11:39.972 INFO:tasks.vip:Removing 10.0.15.181 (and any VIPs) on smithi181.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T11:11:39.972 DEBUG:teuthology.orchestra.run.smithi181:> sudo ip addr del 10.0.15.181/16 dev enp3s0f1 2024-09-17T11:11:40.006 DEBUG:teuthology.orchestra.run.smithi181:> sudo ip addr del 10.0.31.42/16 dev enp3s0f1 2024-09-17T11:11:40.074 INFO:teuthology.orchestra.run.smithi181.stderr:Error: ipv4: Address not found. 2024-09-17T11:11:40.075 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-17T11:11:40.075 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T11:11:40.086 INFO:tasks.cephadm:Teardown begin 2024-09-17T11:11:40.086 DEBUG:teuthology.orchestra.run.smithi042:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:11:40.114 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:11:40.143 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T11:11:40.143 DEBUG:teuthology.orchestra.run.smithi042:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:11:40.170 DEBUG:teuthology.orchestra.run.smithi181:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:11:40.201 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T11:11:40.201 INFO:tasks.cephadm.mon.smithi042:Stopping mon.smithi042... 2024-09-17T11:11:40.201 DEBUG:teuthology.orchestra.run.smithi042:> sudo systemctl stop ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042 2024-09-17T11:11:40.506 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 systemd[1]: Stopping Ceph mon.smithi042 for 82491f84-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:11:40.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042[25832]: 2024-09-17T11:11:40.506+0000 7f47eb829640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi042 -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-17T11:11:40.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042[25832]: 2024-09-17T11:11:40.506+0000 7f47eb829640 -1 mon.smithi042@0(leader) e2 *** Got Signal Terminated *** 2024-09-17T11:11:40.821 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 podman[90705]: 2024-09-17 11:11:40.590274291 +0000 UTC m=+0.189349955 container died f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-7498493, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731) 2024-09-17T11:11:41.240 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 podman[90705]: 2024-09-17 11:11:40.963636745 +0000 UTC m=+0.562712406 container cleanup f4a0d6c57545c4a6f2b3f8c3d86d29457d020da04a459a3ba9824163b737d486 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=main-7498493, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T11:11:41.241 INFO:journalctl@ceph.mon.smithi042.smithi042.stdout:Sep 17 11:11:40 smithi042 bash[90705]: ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi042 2024-09-17T11:11:41.400 DEBUG:teuthology.orchestra.run.smithi042:> sudo pkill -f 'journalctl -f -n 0 -u ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi042.service' 2024-09-17T11:11:41.450 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T11:11:41.451 INFO:tasks.cephadm.mon.smithi042:Stopped mon.smithi042 2024-09-17T11:11:41.451 INFO:tasks.cephadm.mon.smithi181:Stopping mon.smithi181... 2024-09-17T11:11:41.451 DEBUG:teuthology.orchestra.run.smithi181:> sudo systemctl stop ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi181 2024-09-17T11:11:41.743 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:41 smithi181 systemd[1]: Stopping Ceph mon.smithi181 for 82491f84-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:11:41.998 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:41 smithi181 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181[34149]: 2024-09-17T11:11:41.742+0000 7f749f89d640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi181 -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-17T11:11:41.998 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:41 smithi181 ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181[34149]: 2024-09-17T11:11:41.742+0000 7f749f89d640 -1 mon.smithi181@1(peon) e2 *** Got Signal Terminated *** 2024-09-17T11:11:42.309 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:41 smithi181 podman[61464]: 2024-09-17 11:11:41.99815149 +0000 UTC m=+0.355078050 container died 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=main-7498493, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2024-09-17T11:11:42.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:42 smithi181 podman[61464]: 2024-09-17 11:11:42.532281994 +0000 UTC m=+0.889208543 container cleanup 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, RELEASE=main-7498493, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD) 2024-09-17T11:11:42.596 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:42 smithi181 bash[61464]: ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181 2024-09-17T11:11:43.013 DEBUG:teuthology.orchestra.run.smithi181:> sudo pkill -f 'journalctl -f -n 0 -u ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi181.service' 2024-09-17T11:11:43.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:42 smithi181 podman[61481]: 2024-09-17 11:11:42.766950246 +0000 UTC m=+0.759886530 container remove 5b70ae815d48b48f384645676b8de92dcc38146cc4b33b2edfe4ead0a0742cf7 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-82491f84-74e4-11ef-bceb-c7b262605968-mon-smithi181, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=main-7498493, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-09-17T11:11:43.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:43 smithi181 systemd[1]: ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi181.service: Deactivated successfully. 2024-09-17T11:11:43.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:43 smithi181 systemd[1]: Stopped Ceph mon.smithi181 for 82491f84-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:11:43.034 INFO:journalctl@ceph.mon.smithi181.smithi181.stdout:Sep 17 11:11:43 smithi181 systemd[1]: ceph-82491f84-74e4-11ef-bceb-c7b262605968@mon.smithi181.service: Consumed 3.180s CPU time. 2024-09-17T11:11:43.070 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T11:11:43.070 INFO:tasks.cephadm.mon.smithi181:Stopped mon.smithi181 2024-09-17T11:11:43.070 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 82491f84-74e4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T11:11:48.661 INFO:teuthology.orchestra.run.smithi042.stdout:Deleting cluster with fsid: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:12:46.219 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 82491f84-74e4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T11:12:46.425 INFO:teuthology.orchestra.run.smithi181.stdout:Deleting cluster with fsid: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:13:39.073 DEBUG:teuthology.orchestra.run.smithi042:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:13:39.109 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:13:39.137 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T11:13:39.138 DEBUG:teuthology.misc:Transferring archived files from smithi042:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi042/crash 2024-09-17T11:13:39.139 DEBUG:teuthology.orchestra.run.smithi042:> sudo tar c -f - -C /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T11:13:39.190 INFO:teuthology.orchestra.run.smithi042.stderr:tar: /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T11:13:39.190 INFO:teuthology.orchestra.run.smithi042.stderr:tar: Error is not recoverable: exiting now 2024-09-17T11:13:39.192 DEBUG:teuthology.misc:Transferring archived files from smithi181:/var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi181/crash 2024-09-17T11:13:39.192 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T11:13:39.236 INFO:teuthology.orchestra.run.smithi181.stderr:tar: /var/lib/ceph/82491f84-74e4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T11:13:39.236 INFO:teuthology.orchestra.run.smithi181.stderr:tar: Error is not recoverable: exiting now 2024-09-17T11:13:39.237 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T11:13:39.238 DEBUG:teuthology.orchestra.run.smithi042:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T11:13:39.270 INFO:tasks.cephadm:Compressing logs... 2024-09-17T11:13:39.270 DEBUG:teuthology.orchestra.run.smithi042:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T11:13:39.313 DEBUG:teuthology.orchestra.run.smithi181:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T11:13:39.343 INFO:teuthology.orchestra.run.smithi181.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-17T11:13:39.343 INFO:teuthology.orchestra.run.smithi181.stderr:: No such file or directory 2024-09-17T11:13:39.343 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi181.alewvj.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log: /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi181.alewvj.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr: 62.4% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi181.alewvj.log.gz 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log: /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr: 82.5% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T11:13:39.344 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log: --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi181.log 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi181.zcjreb.log 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr: 91.3% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr: 86.2% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi181.log: 29.3% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi181.log.gz 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi181.log 2024-09-17T11:13:39.345 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi181.zcjreb.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:: No such file or directory 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:gzip/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log: -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi042.jxsumf.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T11:13:39.350 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi042.jxsumf.log: /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi042.edxepy.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi042.edxepy.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi042.edxepy.log: 84.3% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log.gzgzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr: 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr: 77.9% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi042.edxepy.log.gz 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:gzip/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi042.edxepy.log: -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log: 69.9%gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi042.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr: -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi042.edxepy.log.gz 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi042.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log: 91.1% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi042.log: gzip -5 --verbose -- /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi042.log: 93.6% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi042.log.gz 2024-09-17T11:13:39.351 INFO:teuthology.orchestra.run.smithi042.stderr: 86.7% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T11:13:39.352 INFO:teuthology.orchestra.run.smithi181.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi181.log: /var/log/ceph/cephadm.log: 92.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T11:13:39.352 INFO:teuthology.orchestra.run.smithi181.stderr: 91.4% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi181.zcjreb.log.gz 2024-09-17T11:13:39.352 INFO:teuthology.orchestra.run.smithi181.stderr: 90.9% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T11:13:39.352 INFO:teuthology.orchestra.run.smithi042.stderr: 90.8% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T11:13:39.353 INFO:teuthology.orchestra.run.smithi042.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T11:13:39.385 INFO:teuthology.orchestra.run.smithi042.stderr:/var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log: /var/log/ceph/cephadm.log: 91.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T11:13:39.446 INFO:teuthology.orchestra.run.smithi181.stderr: 92.6% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi181.log.gz 2024-09-17T11:13:39.514 INFO:teuthology.orchestra.run.smithi042.stderr: 89.0% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi042.jxsumf.log.gz 2024-09-17T11:13:39.604 INFO:teuthology.orchestra.run.smithi042.stderr: 91.3% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi042.log.gz 2024-09-17T11:13:39.606 INFO:teuthology.orchestra.run.smithi181.stderr: 93.4% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log.gz 2024-09-17T11:13:39.637 INFO:teuthology.orchestra.run.smithi181.stderr: 93.5% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-17T11:13:39.641 INFO:teuthology.orchestra.run.smithi181.stderr: 93.6% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-17T11:13:39.646 INFO:teuthology.orchestra.run.smithi042.stderr: 93.7% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log.gz 2024-09-17T11:13:39.661 INFO:teuthology.orchestra.run.smithi042.stderr: 93.6% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-17T11:13:39.667 INFO:teuthology.orchestra.run.smithi042.stderr: 93.7% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-17T11:13:39.676 INFO:teuthology.orchestra.run.smithi042.stderr: 93.7% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-17T11:13:39.678 INFO:teuthology.orchestra.run.smithi042.stderr: 2024-09-17T11:13:39.678 INFO:teuthology.orchestra.run.smithi042.stderr:real 0m0.350s 2024-09-17T11:13:39.678 INFO:teuthology.orchestra.run.smithi042.stderr:user 0m1.704s 2024-09-17T11:13:39.678 INFO:teuthology.orchestra.run.smithi042.stderr:sys 0m0.083s 2024-09-17T11:13:39.693 INFO:teuthology.orchestra.run.smithi181.stderr: 93.6% -- replaced with /var/log/ceph/82491f84-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-17T11:13:39.695 INFO:teuthology.orchestra.run.smithi181.stderr: 2024-09-17T11:13:39.695 INFO:teuthology.orchestra.run.smithi181.stderr:real 0m0.368s 2024-09-17T11:13:39.696 INFO:teuthology.orchestra.run.smithi181.stderr:user 0m1.300s 2024-09-17T11:13:39.696 INFO:teuthology.orchestra.run.smithi181.stderr:sys 0m0.076s 2024-09-17T11:13:39.696 INFO:tasks.cephadm:Archiving logs... 2024-09-17T11:13:39.696 DEBUG:teuthology.misc:Transferring archived files from smithi042:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi042/log 2024-09-17T11:13:39.697 DEBUG:teuthology.orchestra.run.smithi042:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T11:13:39.977 DEBUG:teuthology.misc:Transferring archived files from smithi181:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi181/log 2024-09-17T11:13:39.978 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T11:13:40.195 INFO:tasks.cephadm:Removing cluster... 2024-09-17T11:13:40.195 DEBUG:teuthology.orchestra.run.smithi042:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 82491f84-74e4-11ef-bceb-c7b262605968 --force 2024-09-17T11:13:40.397 INFO:teuthology.orchestra.run.smithi042.stdout:Deleting cluster with fsid: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:13:40.530 DEBUG:teuthology.orchestra.run.smithi181:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 82491f84-74e4-11ef-bceb-c7b262605968 --force 2024-09-17T11:13:40.720 INFO:teuthology.orchestra.run.smithi181.stdout:Deleting cluster with fsid: 82491f84-74e4-11ef-bceb-c7b262605968 2024-09-17T11:13:40.836 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T11:13:40.836 DEBUG:teuthology.orchestra.run.smithi042:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T11:13:40.852 DEBUG:teuthology.orchestra.run.smithi181:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T11:13:40.867 INFO:tasks.cephadm:Teardown complete 2024-09-17T11:13:40.867 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-17T11:13:40.879 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_1... 2024-09-17T11:13:40.879 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_1 2024-09-17T11:13:41.036 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T11:13:41.037 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_2... 2024-09-17T11:13:41.038 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_2 2024-09-17T11:13:41.195 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T11:13:41.197 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_3... 2024-09-17T11:13:41.197 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_3 2024-09-17T11:13:41.334 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T11:13:41.335 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_4... 2024-09-17T11:13:41.336 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_4 2024-09-17T11:13:41.473 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T11:13:41.475 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-09-17T11:13:41.475 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/scratch_devs 2024-09-17T11:13:41.500 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi181:/dev/vg_nvme/lv_1... 2024-09-17T11:13:41.500 DEBUG:teuthology.orchestra.run.smithi181:> sudo nvme disconnect -n lv_1 2024-09-17T11:13:41.641 INFO:teuthology.orchestra.run.smithi181.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T11:13:41.643 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi181:/dev/vg_nvme/lv_2... 2024-09-17T11:13:41.643 DEBUG:teuthology.orchestra.run.smithi181:> sudo nvme disconnect -n lv_2 2024-09-17T11:13:41.792 INFO:teuthology.orchestra.run.smithi181.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T11:13:41.794 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi181:/dev/vg_nvme/lv_3... 2024-09-17T11:13:41.794 DEBUG:teuthology.orchestra.run.smithi181:> sudo nvme disconnect -n lv_3 2024-09-17T11:13:42.000 INFO:teuthology.orchestra.run.smithi181.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T11:13:42.002 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi181:/dev/vg_nvme/lv_4... 2024-09-17T11:13:42.002 DEBUG:teuthology.orchestra.run.smithi181:> sudo nvme disconnect -n lv_4 2024-09-17T11:13:42.149 INFO:teuthology.orchestra.run.smithi181.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T11:13:42.151 DEBUG:teuthology.orchestra.run.smithi181:> set -ex 2024-09-17T11:13:42.151 DEBUG:teuthology.orchestra.run.smithi181:> sudo dd of=/scratch_devs 2024-09-17T11:13:42.176 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T11:13:42.187 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T11:13:42.187 DEBUG:teuthology.orchestra.run.smithi042:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:13:42.190 DEBUG:teuthology.orchestra.run.smithi181:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:13:42.204 INFO:teuthology.orchestra.run.smithi042.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:13:42.208 INFO:teuthology.orchestra.run.smithi042.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:13:42.208 INFO:teuthology.orchestra.run.smithi042.stdout:=============================================================================== 2024-09-17T11:13:42.208 INFO:teuthology.orchestra.run.smithi042.stdout:^* hv01.front.sepia.ceph.com 3 6 377 19 -612us[ -602us] +/- 52ms 2024-09-17T11:13:42.208 INFO:teuthology.orchestra.run.smithi042.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 18 +869us[ +869us] +/- 57ms 2024-09-17T11:13:42.209 INFO:teuthology.orchestra.run.smithi042.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 19 -134us[ -124us] +/- 61ms 2024-09-17T11:13:42.209 INFO:teuthology.orchestra.run.smithi042.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:13:42.230 INFO:teuthology.orchestra.run.smithi181.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:13:42.235 INFO:teuthology.orchestra.run.smithi181.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:13:42.235 INFO:teuthology.orchestra.run.smithi181.stdout:=============================================================================== 2024-09-17T11:13:42.235 INFO:teuthology.orchestra.run.smithi181.stdout:^* hv01.front.sepia.ceph.com 3 6 377 21 -603us[ -554us] +/- 52ms 2024-09-17T11:13:42.235 INFO:teuthology.orchestra.run.smithi181.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 20 +860us[ +860us] +/- 57ms 2024-09-17T11:13:42.235 INFO:teuthology.orchestra.run.smithi181.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 21 -130us[ -81us] +/- 61ms 2024-09-17T11:13:42.236 INFO:teuthology.orchestra.run.smithi181.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:13:42.236 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T11:13:42.249 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T11:13:42.249 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T11:13:42.260 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:13:42.343 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:13:42.411 DEBUG:teuthology.orchestra.run.smithi042:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-17T11:13:42.442 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:13:42.443 DEBUG:teuthology.orchestra.run.smithi181:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-09-17T11:13:42.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:13:42.472 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T11:13:42.482 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T11:13:42.493 INFO:teuthology.task.internal:Duration was 835.262407 seconds 2024-09-17T11:13:42.494 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T11:13:42.504 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T11:13:42.504 DEBUG:teuthology.orchestra.run.smithi042:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T11:13:42.506 DEBUG:teuthology.orchestra.run.smithi181:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T11:13:42.546 INFO:teuthology.orchestra.run.smithi042.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T11:13:42.551 INFO:teuthology.orchestra.run.smithi181.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T11:13:42.881 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T11:13:42.881 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi042.front.sepia.ceph.com 2024-09-17T11:13:42.881 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:13:42.933 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi181.front.sepia.ceph.com 2024-09-17T11:13:42.933 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:13:42.955 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T11:13:42.956 DEBUG:teuthology.orchestra.run.smithi042:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T11:13:42.976 DEBUG:teuthology.orchestra.run.smithi181:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T11:13:43.022 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T11:13:43.023 DEBUG:teuthology.orchestra.run.smithi042:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T11:13:43.044 DEBUG:teuthology.orchestra.run.smithi181:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T11:13:43.318 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T11:13:43.329 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T11:13:43.329 DEBUG:teuthology.orchestra.run.smithi042:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T11:13:43.355 DEBUG:teuthology.orchestra.run.smithi181:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T11:13:43.379 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T11:13:43.391 DEBUG:teuthology.orchestra.run.smithi042:> 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-17T11:13:43.397 DEBUG:teuthology.orchestra.run.smithi181:> 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-17T11:13:43.419 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern = core 2024-09-17T11:13:43.442 INFO:teuthology.orchestra.run.smithi181.stdout:kernel.core_pattern = core 2024-09-17T11:13:43.462 DEBUG:teuthology.orchestra.run.smithi042:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:13:43.511 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:13:43.512 DEBUG:teuthology.orchestra.run.smithi181:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:13:43.526 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:13:43.526 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T11:13:43.538 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T11:13:43.539 DEBUG:teuthology.misc:Transferring archived files from smithi042:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi042 2024-09-17T11:13:43.539 DEBUG:teuthology.orchestra.run.smithi042:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T11:13:43.593 DEBUG:teuthology.misc:Transferring archived files from smithi181:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907723/remote/smithi181 2024-09-17T11:13:43.593 DEBUG:teuthology.orchestra.run.smithi181:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T11:13:43.627 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T11:13:43.628 DEBUG:teuthology.orchestra.run.smithi042:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T11:13:43.630 DEBUG:teuthology.orchestra.run.smithi181:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T11:13:43.677 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T11:13:43.691 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T11:13:43.691 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T11:13:43.701 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T11:13:43.702 DEBUG:teuthology.orchestra.run.smithi042:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T11:13:43.704 DEBUG:teuthology.orchestra.run.smithi181:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T11:13:43.717 INFO:teuthology.orchestra.run.smithi042.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 11:13 /home/ubuntu/cephtest 2024-09-17T11:13:43.732 INFO:teuthology.orchestra.run.smithi181.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 11:13 /home/ubuntu/cephtest 2024-09-17T11:13:43.733 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T11:13:43.745 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T11:13:43.772 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: 835.2624073028564 owner: scheduled_teuthology@teuthology success: true 2024-09-17T11:13:43.772 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T11:13:43.855 INFO:teuthology.run:pass