2024-05-14T03:19:20.481 INFO:root:teuthology version: 0.0.1.dev271+g1ae7ad8 2024-05-14T03:19:20.481 DEBUG:teuthology.run:Teuthology command: teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools_crun 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --archive /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317 --verbose --owner scheduled_teuthology@teuthology --name teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/orig.config.yaml 2024-05-14T03:19:20.519 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-14T03:19:20.603 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317 branch: reef description: orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools_crun 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7705317' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 8.stream overrides: admin_socket: branch: reef ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e owner: scheduled_teuthology@teuthology priority: 930 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 7277 sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e sleep_before_teardown: 0 subset: 33/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_2965081fb1a343a09e00ceeede998525f5c6cb5e/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e targets: smithi096.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAmNVKXDsEfaunWC0MyB6hvbm4Y0QpAobk/fhCKBVBJr5npqJU5gBpjpGYnNLh5C2T2c4bxnvPPPOvp9xRrNATA= smithi137.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBmKVP8wL54iJKae2owqXiUSo8u9825uM5fwWRdIh7yGNQBaul/x7ZNYbx18O4WvjTdfHDAiD+OAqqcGAOmzpv8= tasks: - pexec: all: - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup - sudo dnf -y module reset container-tools - sudo dnf -y module install container-tools --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf - sudo sed -i 's/runtime = "runc"/#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: 1ae7ad82388e92a475afff437d49054826c019a1 timestamp: 2024-05-13_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-05-14T03:19:20.604 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_2965081fb1a343a09e00ceeede998525f5c6cb5e/qa; will attempt to use it 2024-05-14T03:19:20.604 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_2965081fb1a343a09e00ceeede998525f5c6cb5e/qa/tasks 2024-05-14T03:19:20.604 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-05-14T03:19:20.606 INFO:teuthology.task.internal:Checking packages... 2024-05-14T03:19:20.631 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '2965081fb1a343a09e00ceeede998525f5c6cb5e' 2024-05-14T03:19:20.631 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-05-14T03:19:20.631 INFO:teuthology.packaging:ref: None 2024-05-14T03:19:20.631 INFO:teuthology.packaging:tag: None 2024-05-14T03:19:20.631 INFO:teuthology.packaging:branch: reef 2024-05-14T03:19:20.631 INFO:teuthology.packaging:sha1: 2965081fb1a343a09e00ceeede998525f5c6cb5e 2024-05-14T03:19:20.631 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=reef 2024-05-14T03:19:20.978 INFO:teuthology.task.internal:Found packages for ceph version 18.2.2-1343.g2965081f 2024-05-14T03:19:20.979 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-05-14T03:19:20.985 INFO:teuthology.task.internal:no buildpackages task found 2024-05-14T03:19:20.985 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-05-14T03:19:20.990 INFO:teuthology.task.internal:Saving configuration 2024-05-14T03:19:21.004 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-05-14T03:19:21.009 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-14T03:19:21.028 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi096.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-14 03:14:12.886308', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAmNVKXDsEfaunWC0MyB6hvbm4Y0QpAobk/fhCKBVBJr5npqJU5gBpjpGYnNLh5C2T2c4bxnvPPPOvp9xRrNATA='} 2024-05-14T03:19:21.043 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi137.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '8', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-05-14 03:14:12.888463', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBmKVP8wL54iJKae2owqXiUSo8u9825uM5fwWRdIh7yGNQBaul/x7ZNYbx18O4WvjTdfHDAiD+OAqqcGAOmzpv8='} 2024-05-14T03:19:21.043 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-05-14T03:19:21.048 INFO:teuthology.task.internal:roles: ubuntu@smithi096.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-05-14T03:19:21.048 INFO:teuthology.task.internal:roles: ubuntu@smithi137.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-05-14T03:19:21.048 INFO:teuthology.run_tasks:Running task console_log... 2024-05-14T03:19:21.107 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f59f0f7f0d0>, signals=[15]) 2024-05-14T03:19:21.108 INFO:teuthology.run_tasks:Running task internal.connect... 2024-05-14T03:19:21.114 INFO:teuthology.task.internal:Opening connections... 2024-05-14T03:19:21.114 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:19:21.116 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:19:21.201 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi137.front.sepia.ceph.com 2024-05-14T03:19:21.202 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:19:21.276 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-05-14T03:19:21.282 DEBUG:teuthology.orchestra.run.smithi096:> uname -m 2024-05-14T03:19:21.305 INFO:teuthology.orchestra.run.smithi096.stdout:x86_64 2024-05-14T03:19:21.306 DEBUG:teuthology.orchestra.run.smithi096:> cat /etc/os-release 2024-05-14T03:19:21.366 INFO:teuthology.orchestra.run.smithi096.stdout:NAME="CentOS Stream" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION="8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:ID="centos" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:ID_LIKE="rhel fedora" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:VERSION_ID="8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:PLATFORM_ID="platform:el8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:PRETTY_NAME="CentOS Stream 8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:ANSI_COLOR="0;31" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:CPE_NAME="cpe:/o:centos:centos:8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:HOME_URL="https://centos.org/" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8" 2024-05-14T03:19:21.367 INFO:teuthology.orchestra.run.smithi096.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-14T03:19:21.368 INFO:teuthology.lock.ops:Updating smithi096.front.sepia.ceph.com on lock server 2024-05-14T03:19:21.388 DEBUG:teuthology.orchestra.run.smithi137:> uname -m 2024-05-14T03:19:21.409 INFO:teuthology.orchestra.run.smithi137.stdout:x86_64 2024-05-14T03:19:21.409 DEBUG:teuthology.orchestra.run.smithi137:> cat /etc/os-release 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:NAME="CentOS Stream" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:VERSION="8" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:ID="centos" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:ID_LIKE="rhel fedora" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:VERSION_ID="8" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:PLATFORM_ID="platform:el8" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:PRETTY_NAME="CentOS Stream 8" 2024-05-14T03:19:21.471 INFO:teuthology.orchestra.run.smithi137.stdout:ANSI_COLOR="0;31" 2024-05-14T03:19:21.472 INFO:teuthology.orchestra.run.smithi137.stdout:CPE_NAME="cpe:/o:centos:centos:8" 2024-05-14T03:19:21.472 INFO:teuthology.orchestra.run.smithi137.stdout:HOME_URL="https://centos.org/" 2024-05-14T03:19:21.472 INFO:teuthology.orchestra.run.smithi137.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-14T03:19:21.472 INFO:teuthology.orchestra.run.smithi137.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8" 2024-05-14T03:19:21.472 INFO:teuthology.orchestra.run.smithi137.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-14T03:19:21.472 INFO:teuthology.lock.ops:Updating smithi137.front.sepia.ceph.com on lock server 2024-05-14T03:19:21.488 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-05-14T03:19:21.496 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-05-14T03:19:21.502 INFO:teuthology.task.internal:Checking for old test directory... 2024-05-14T03:19:21.502 DEBUG:teuthology.orchestra.run.smithi096:> test '!' -e /home/ubuntu/cephtest 2024-05-14T03:19:21.504 DEBUG:teuthology.orchestra.run.smithi137:> test '!' -e /home/ubuntu/cephtest 2024-05-14T03:19:21.530 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-05-14T03:19:21.535 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-05-14T03:19:21.535 DEBUG:teuthology.orchestra.run.smithi096:> test -z $(ls -A /var/lib/ceph) 2024-05-14T03:19:21.565 DEBUG:teuthology.orchestra.run.smithi137:> test -z $(ls -A /var/lib/ceph) 2024-05-14T03:19:21.597 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-05-14T03:19:21.649 INFO:teuthology.run_tasks:Running task kernel... 2024-05-14T03:19:21.667 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-05-14T03:19:21.667 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-05-14T03:19:21.668 DEBUG:teuthology.orchestra.run.smithi096:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-14T03:19:21.668 DEBUG:teuthology.orchestra.run.smithi137:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-14T03:19:21.687 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:19:21.687 DEBUG:teuthology.orchestra.run.smithi137:> uname -r 2024-05-14T03:19:21.688 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:19:21.689 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-05-14T03:19:21.747 INFO:teuthology.orchestra.run.smithi137.stdout:4.18.0-489.el8.x86_64 2024-05-14T03:19:21.747 INFO:teuthology.task.kernel:Running kernel on smithi137: 4.18.0-489.el8.x86_64 2024-05-14T03:19:21.748 DEBUG:teuthology.orchestra.run.smithi137:> sudo yum install -y kernel 2024-05-14T03:19:21.750 INFO:teuthology.orchestra.run.smithi096.stdout:4.18.0-489.el8.x86_64 2024-05-14T03:19:21.751 INFO:teuthology.task.kernel:Running kernel on smithi096: 4.18.0-489.el8.x86_64 2024-05-14T03:19:21.751 DEBUG:teuthology.orchestra.run.smithi096:> sudo yum install -y kernel 2024-05-14T03:19:25.401 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 8 - AppStream 28 MB/s | 28 MB 00:01 2024-05-14T03:19:25.428 INFO:teuthology.orchestra.run.smithi137.stdout:CentOS Stream 8 - AppStream 28 MB/s | 28 MB 00:00 2024-05-14T03:19:31.342 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 8 - BaseOS 11 MB/s | 10 MB 00:00 2024-05-14T03:19:31.403 INFO:teuthology.orchestra.run.smithi137.stdout:CentOS Stream 8 - BaseOS 11 MB/s | 10 MB 00:00 2024-05-14T03:19:33.117 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 8 - Extras 103 kB/s | 18 kB 00:00 2024-05-14T03:19:33.204 INFO:teuthology.orchestra.run.smithi137.stdout:CentOS Stream 8 - Extras 110 kB/s | 18 kB 00:00 2024-05-14T03:19:33.593 INFO:teuthology.orchestra.run.smithi096.stdout:CentOS Stream 8 - Extras common packages 21 kB/s | 7.7 kB 00:00 2024-05-14T03:19:33.812 INFO:teuthology.orchestra.run.smithi137.stdout:CentOS Stream 8 - Extras common packages 15 kB/s | 7.7 kB 00:00 2024-05-14T03:19:33.845 INFO:teuthology.orchestra.run.smithi096.stdout:Copr repo for python3-asyncssh owned by ceph 21 kB/s | 3.5 kB 00:00 2024-05-14T03:19:34.047 INFO:teuthology.orchestra.run.smithi137.stdout:Copr repo for python3-asyncssh owned by ceph 24 kB/s | 3.5 kB 00:00 2024-05-14T03:19:34.639 INFO:teuthology.orchestra.run.smithi096.stdout:Extra Packages for Enterprise Linux 19 MB/s | 14 MB 00:00 2024-05-14T03:19:36.256 INFO:teuthology.orchestra.run.smithi137.stdout:Extra Packages for Enterprise Linux 6.4 MB/s | 14 MB 00:02 2024-05-14T03:19:38.928 INFO:teuthology.orchestra.run.smithi096.stdout:lab-extras 282 kB/s | 24 kB 00:00 2024-05-14T03:19:40.516 INFO:teuthology.orchestra.run.smithi137.stdout:lab-extras 429 kB/s | 24 kB 00:00 2024-05-14T03:19:42.058 INFO:teuthology.orchestra.run.smithi096.stdout:Package kernel-4.18.0-348.el8.x86_64 is already installed. 2024-05-14T03:19:42.059 INFO:teuthology.orchestra.run.smithi096.stdout:Package kernel-4.18.0-489.el8.x86_64 is already installed. 2024-05-14T03:19:42.186 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout: Package Architecture Version Repository Size 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout: kernel x86_64 4.18.0-552.1.1.el8 baseos 10 M 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-core x86_64 4.18.0-552.1.1.el8 baseos 44 M 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules x86_64 4.18.0-552.1.1.el8 baseos 36 M 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:19:42.187 INFO:teuthology.orchestra.run.smithi096.stdout:Install 3 Packages 2024-05-14T03:19:42.188 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:19:42.188 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 90 M 2024-05-14T03:19:42.188 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 96 M 2024-05-14T03:19:42.188 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-05-14T03:19:42.954 INFO:teuthology.orchestra.run.smithi096.stdout:(1/3): kernel-4.18.0-552.1.1.el8.x86_64.rpm 15 MB/s | 10 MB 00:00 2024-05-14T03:19:43.655 INFO:teuthology.orchestra.run.smithi137.stdout:Package kernel-4.18.0-348.el8.x86_64 is already installed. 2024-05-14T03:19:43.655 INFO:teuthology.orchestra.run.smithi137.stdout:Package kernel-4.18.0-489.el8.x86_64 is already installed. 2024-05-14T03:19:43.755 INFO:teuthology.orchestra.run.smithi137.stdout:Dependencies resolved. 2024-05-14T03:19:43.755 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:19:43.755 INFO:teuthology.orchestra.run.smithi137.stdout: Package Architecture Version Repository Size 2024-05-14T03:19:43.755 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout:Installing: 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout: kernel x86_64 4.18.0-552.1.1.el8 baseos 10 M 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout:Installing dependencies: 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout: kernel-core x86_64 4.18.0-552.1.1.el8 baseos 44 M 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout: kernel-modules x86_64 4.18.0-552.1.1.el8 baseos 36 M 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction Summary 2024-05-14T03:19:43.757 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:19:43.758 INFO:teuthology.orchestra.run.smithi137.stdout:Install 3 Packages 2024-05-14T03:19:43.758 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:19:43.758 INFO:teuthology.orchestra.run.smithi137.stdout:Total download size: 90 M 2024-05-14T03:19:43.758 INFO:teuthology.orchestra.run.smithi137.stdout:Installed size: 96 M 2024-05-14T03:19:43.758 INFO:teuthology.orchestra.run.smithi137.stdout:Downloading Packages: 2024-05-14T03:19:43.763 INFO:teuthology.orchestra.run.smithi096.stdout:(2/3): kernel-modules-4.18.0-552.1.1.el8.x86_64 24 MB/s | 36 MB 00:01 2024-05-14T03:19:44.305 INFO:teuthology.orchestra.run.smithi096.stdout:(3/3): kernel-core-4.18.0-552.1.1.el8.x86_64.rp 21 MB/s | 44 MB 00:02 2024-05-14T03:19:44.305 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:19:44.305 INFO:teuthology.orchestra.run.smithi096.stdout:Total 43 MB/s | 90 MB 00:02 2024-05-14T03:19:44.659 INFO:teuthology.orchestra.run.smithi137.stdout:(1/3): kernel-4.18.0-552.1.1.el8.x86_64.rpm 14 MB/s | 10 MB 00:00 2024-05-14T03:19:44.993 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-05-14T03:19:45.419 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-05-14T03:19:45.419 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-05-14T03:19:45.451 INFO:teuthology.orchestra.run.smithi137.stdout:(2/3): kernel-modules-4.18.0-552.1.1.el8.x86_64 24 MB/s | 36 MB 00:01 2024-05-14T03:19:45.952 INFO:teuthology.orchestra.run.smithi137.stdout:(3/3): kernel-core-4.18.0-552.1.1.el8.x86_64.rp 22 MB/s | 44 MB 00:02 2024-05-14T03:19:45.952 INFO:teuthology.orchestra.run.smithi137.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:19:45.952 INFO:teuthology.orchestra.run.smithi137.stdout:Total 41 MB/s | 90 MB 00:02 2024-05-14T03:19:46.641 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction check 2024-05-14T03:19:46.670 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-05-14T03:19:46.694 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-05-14T03:19:47.087 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction check succeeded. 2024-05-14T03:19:47.087 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction test 2024-05-14T03:19:48.337 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction test succeeded. 2024-05-14T03:19:48.358 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction 2024-05-14T03:19:49.487 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-05-14T03:19:49.992 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-core-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:19:51.156 INFO:teuthology.orchestra.run.smithi137.stdout: Preparing : 1/1 2024-05-14T03:19:51.654 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : kernel-core-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:19:53.563 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-core-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:19:53.941 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-modules-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:19:55.177 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: kernel-core-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:19:55.595 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : kernel-modules-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:19:57.381 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-modules-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:19:57.680 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : kernel-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:19:59.036 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: kernel-modules-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:19:59.328 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : kernel-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:19.488 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-core-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:19.513 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-modules-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:20.043 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: kernel-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:20.043 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:20:20.043 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-core-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : kernel-modules-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-core-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.547 INFO:teuthology.orchestra.run.smithi096.stdout: kernel-modules-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.548 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:20:20.548 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-05-14T03:20:20.710 DEBUG:teuthology.orchestra.run.smithi096:> rpm -q kernel | sort -rV | head -n 1 2024-05-14T03:20:20.941 INFO:teuthology.orchestra.run.smithi096.stdout:kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.941 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.941 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-489.el8.x86_64 Expected: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:20.941 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-14T03:20:20.941 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-14T03:20:20.942 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-05-14T03:20:20.942 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi096.front.sepia.ceph.com, path=None, version=distro) 2024-05-14T03:20:20.942 DEBUG:teuthology.orchestra.run.smithi096:> rpm -q kernel | sort -rV | head -n 1 2024-05-14T03:20:21.154 INFO:teuthology.orchestra.run.smithi096.stdout:kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:21.154 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:21.155 DEBUG:teuthology.orchestra.run.smithi096:> sudo rpm -qi grub2-tools 2024-05-14T03:20:21.188 INFO:teuthology.orchestra.run.smithi096.stdout:Name : grub2-tools 2024-05-14T03:20:21.188 INFO:teuthology.orchestra.run.smithi096.stdout:Epoch : 1 2024-05-14T03:20:21.188 INFO:teuthology.orchestra.run.smithi096.stdout:Version : 2.02 2024-05-14T03:20:21.188 INFO:teuthology.orchestra.run.smithi096.stdout:Release : 129.el8 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Architecture: x86_64 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Install Date: Thu 04 May 2023 10:17:48 PM UTC 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Group : System Environment/Base 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Size : 9265586 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:License : GPLv3+ 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Signature : RSA/SHA256, Tue 19 Jul 2022 02:52:06 PM UTC, Key ID 05b555b38483c65d 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Source RPM : grub2-2.02-129.el8.src.rpm 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Build Date : Tue 19 Jul 2022 02:30:39 PM UTC 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Build Host : kbuilder.bsys.centos.org 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Relocations : (not relocatable) 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Packager : CentOS BuildSystem 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Vendor : CentOS 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-14T03:20:21.189 INFO:teuthology.orchestra.run.smithi096.stdout:Summary : Support tools for GRUB. 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:Description : 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:hardware devices. 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:20:21.190 INFO:teuthology.orchestra.run.smithi096.stdout:This subpackage provides tools for support of all platforms. 2024-05-14T03:20:21.191 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-14T03:20:21.191 INFO:teuthology.task.kernel:Updating grub on smithi096 to boot 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:21.191 DEBUG:teuthology.orchestra.run.smithi096:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-14T03:20:21.255 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: kernel-core-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:21.278 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: kernel-modules-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:21.653 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: kernel-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:21.654 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : kernel-4.18.0-552.1.1.el8.x86_64 1/3 2024-05-14T03:20:21.654 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : kernel-core-4.18.0-552.1.1.el8.x86_64 2/3 2024-05-14T03:20:22.153 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : kernel-modules-4.18.0-552.1.1.el8.x86_64 3/3 2024-05-14T03:20:22.153 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:20:22.153 INFO:teuthology.orchestra.run.smithi137.stdout:Installed: 2024-05-14T03:20:22.154 INFO:teuthology.orchestra.run.smithi137.stdout: kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.154 INFO:teuthology.orchestra.run.smithi137.stdout: kernel-core-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.154 INFO:teuthology.orchestra.run.smithi137.stdout: kernel-modules-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.154 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:20:22.154 INFO:teuthology.orchestra.run.smithi137.stdout:Complete! 2024-05-14T03:20:22.313 DEBUG:teuthology.orchestra.run.smithi137:> rpm -q kernel | sort -rV | head -n 1 2024-05-14T03:20:22.530 INFO:teuthology.orchestra.run.smithi137.stdout:kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.530 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.530 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-489.el8.x86_64 Expected: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.530 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-14T03:20:22.530 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-14T03:20:22.530 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-05-14T03:20:22.531 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi137.front.sepia.ceph.com, path=None, version=distro) 2024-05-14T03:20:22.531 DEBUG:teuthology.orchestra.run.smithi137:> rpm -q kernel | sort -rV | head -n 1 2024-05-14T03:20:22.574 INFO:teuthology.orchestra.run.smithi096.stderr:Generating grub configuration file ... 2024-05-14T03:20:22.742 INFO:teuthology.orchestra.run.smithi137.stdout:kernel-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.742 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.742 DEBUG:teuthology.orchestra.run.smithi137:> sudo rpm -qi grub2-tools 2024-05-14T03:20:22.776 INFO:teuthology.orchestra.run.smithi137.stdout:Name : grub2-tools 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Epoch : 1 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Version : 2.02 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Release : 129.el8 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Architecture: x86_64 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Install Date: Thu 04 May 2023 10:17:48 PM UTC 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Group : System Environment/Base 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Size : 9265586 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:License : GPLv3+ 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Signature : RSA/SHA256, Tue 19 Jul 2022 02:52:06 PM UTC, Key ID 05b555b38483c65d 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Source RPM : grub2-2.02-129.el8.src.rpm 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Build Date : Tue 19 Jul 2022 02:30:39 PM UTC 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Build Host : kbuilder.bsys.centos.org 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Relocations : (not relocatable) 2024-05-14T03:20:22.777 INFO:teuthology.orchestra.run.smithi137.stdout:Packager : CentOS BuildSystem 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:Vendor : CentOS 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:Summary : Support tools for GRUB. 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:Description : 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:hardware devices. 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:20:22.778 INFO:teuthology.orchestra.run.smithi137.stdout:This subpackage provides tools for support of all platforms. 2024-05-14T03:20:22.779 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-14T03:20:22.779 INFO:teuthology.task.kernel:Updating grub on smithi137 to boot 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:22.779 DEBUG:teuthology.orchestra.run.smithi137:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-14T03:20:24.431 INFO:teuthology.orchestra.run.smithi096.stderr:done 2024-05-14T03:20:24.432 DEBUG:teuthology.orchestra.run.smithi096:> mktemp 2024-05-14T03:20:24.472 INFO:teuthology.orchestra.run.smithi096.stdout:/tmp/tmp.KhKeVJX2uI 2024-05-14T03:20:24.472 DEBUG:teuthology.orchestra.run.smithi096:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.KhKeVJX2uI 2024-05-14T03:20:24.481 INFO:teuthology.orchestra.run.smithi137.stderr:Generating grub configuration file ... 2024-05-14T03:20:24.549 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 0666 /tmp/tmp.KhKeVJX2uI 2024-05-14T03:20:24.696 DEBUG:teuthology.orchestra.remote:smithi096:/tmp/tmp.KhKeVJX2uI is 6KB 2024-05-14T03:20:24.744 DEBUG:teuthology.orchestra.run.smithi096:> rm -fr /tmp/tmp.KhKeVJX2uI 2024-05-14T03:20:24.761 DEBUG:teuthology.orchestra.run.smithi096:> sudo /bin/ls /boot/loader/entries || true 2024-05-14T03:20:24.841 INFO:teuthology.orchestra.run.smithi096.stdout:a1b29d6c289747bdb22930598d39874a-0-rescue.conf 2024-05-14T03:20:24.841 INFO:teuthology.orchestra.run.smithi096.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-348.el8.x86_64.conf 2024-05-14T03:20:24.841 INFO:teuthology.orchestra.run.smithi096.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-489.el8.x86_64.conf 2024-05-14T03:20:24.841 INFO:teuthology.orchestra.run.smithi096.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-552.1.1.el8.x86_64.conf 2024-05-14T03:20:24.842 DEBUG:teuthology.orchestra.run.smithi096:> sudo grub2-set-default a1b29d6c289747bdb22930598d39874a-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:25.028 DEBUG:teuthology.orchestra.run.smithi096:> sudo shutdown -r now 2024-05-14T03:20:26.431 INFO:teuthology.orchestra.run.smithi137.stderr:done 2024-05-14T03:20:26.432 DEBUG:teuthology.orchestra.run.smithi137:> mktemp 2024-05-14T03:20:26.463 INFO:teuthology.orchestra.run.smithi137.stdout:/tmp/tmp.Rp6dtjuQ01 2024-05-14T03:20:26.463 DEBUG:teuthology.orchestra.run.smithi137:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Rp6dtjuQ01 2024-05-14T03:20:26.537 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 0666 /tmp/tmp.Rp6dtjuQ01 2024-05-14T03:20:26.672 DEBUG:teuthology.orchestra.remote:smithi137:/tmp/tmp.Rp6dtjuQ01 is 6KB 2024-05-14T03:20:26.722 DEBUG:teuthology.orchestra.run.smithi137:> rm -fr /tmp/tmp.Rp6dtjuQ01 2024-05-14T03:20:26.740 DEBUG:teuthology.orchestra.run.smithi137:> sudo /bin/ls /boot/loader/entries || true 2024-05-14T03:20:26.814 INFO:teuthology.orchestra.run.smithi137.stdout:a1b29d6c289747bdb22930598d39874a-0-rescue.conf 2024-05-14T03:20:26.814 INFO:teuthology.orchestra.run.smithi137.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-348.el8.x86_64.conf 2024-05-14T03:20:26.814 INFO:teuthology.orchestra.run.smithi137.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-489.el8.x86_64.conf 2024-05-14T03:20:26.814 INFO:teuthology.orchestra.run.smithi137.stdout:a1b29d6c289747bdb22930598d39874a-4.18.0-552.1.1.el8.x86_64.conf 2024-05-14T03:20:26.815 DEBUG:teuthology.orchestra.run.smithi137:> sudo grub2-set-default a1b29d6c289747bdb22930598d39874a-4.18.0-552.1.1.el8.x86_64 2024-05-14T03:20:26.994 DEBUG:teuthology.orchestra.run.smithi137:> sudo shutdown -r now 2024-05-14T03:20:55.058 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-05-14T03:20:55.059 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:20:55.060 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:20:56.998 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-05-14T03:20:56.998 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:20:56.999 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:21:13.503 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-05-14T03:21:15.550 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.137 2024-05-14T03:21:22.511 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:21:22.512 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:21:24.553 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:21:24.554 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:21:25.570 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.96 2024-05-14T03:21:27.614 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.137 2024-05-14T03:21:37.581 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:21:37.582 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:21:39.618 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:21:39.618 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:22:09.682 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-05-14T03:22:10.744 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:22:10.745 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.18.0-552.1.1.el8.x86_64"... 2024-05-14T03:22:10.745 DEBUG:teuthology.orchestra.run.smithi096:> uname -r 2024-05-14T03:22:11.171 INFO:teuthology.orchestra.run.smithi096.stdout:4.18.0-552.1.1.el8.x86_64 2024-05-14T03:22:11.171 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-552.1.1.el8.x86_64 vs 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:22:11.171 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-14T03:22:11.172 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-14T03:22:11.733 DEBUG:teuthology.orchestra.run.smithi137:> true 2024-05-14T03:22:12.173 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-05-14T03:22:12.173 DEBUG:teuthology.orchestra.run.smithi096:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-14T03:22:12.238 INFO:teuthology.orchestra.run.smithi096.stdout:ttyS1 2024-05-14T03:22:12.310 DEBUG:teuthology.parallel:result is None 2024-05-14T03:22:13.066 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:22:13.066 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.18.0-552.1.1.el8.x86_64"... 2024-05-14T03:22:13.067 DEBUG:teuthology.orchestra.run.smithi137:> uname -r 2024-05-14T03:22:13.352 INFO:teuthology.orchestra.run.smithi137.stdout:4.18.0-552.1.1.el8.x86_64 2024-05-14T03:22:13.352 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-552.1.1.el8.x86_64 vs 4.18.0-552.1.1.el8.x86_64 2024-05-14T03:22:13.352 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-14T03:22:13.353 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-14T03:22:14.353 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-05-14T03:22:14.354 DEBUG:teuthology.orchestra.run.smithi137:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-14T03:22:14.422 INFO:teuthology.orchestra.run.smithi137.stdout:ttyS1 2024-05-14T03:22:14.435 DEBUG:teuthology.parallel:result is None 2024-05-14T03:22:14.435 INFO:teuthology.run_tasks:Running task internal.base... 2024-05-14T03:22:14.443 INFO:teuthology.task.internal:Creating test directory... 2024-05-14T03:22:14.443 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-14T03:22:14.446 DEBUG:teuthology.orchestra.run.smithi137:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-14T03:22:14.465 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-05-14T03:22:14.472 INFO:teuthology.run_tasks:Running task internal.archive... 2024-05-14T03:22:14.479 INFO:teuthology.task.internal:Creating archive directory... 2024-05-14T03:22:14.479 DEBUG:teuthology.orchestra.run.smithi096:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-14T03:22:14.509 DEBUG:teuthology.orchestra.run.smithi137:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-14T03:22:14.543 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-05-14T03:22:14.550 INFO:teuthology.task.internal:Enabling coredump saving... 2024-05-14T03:22:14.550 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:22:14.582 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:22:14.620 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-14T03:22:14.626 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-14T03:22:14.630 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-14T03:22:14.636 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-14T03:22:14.637 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-05-14T03:22:14.644 INFO:teuthology.task.internal:Configuring sudo... 2024-05-14T03:22:14.644 DEBUG:teuthology.orchestra.run.smithi096:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-14T03:22:14.675 DEBUG:teuthology.orchestra.run.smithi137:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-14T03:22:14.703 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-05-14T03:22:14.712 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-05-14T03:22:14.712 DEBUG:teuthology.orchestra.run.smithi096:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-14T03:22:14.746 DEBUG:teuthology.orchestra.run.smithi137:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-14T03:22:14.763 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-14T03:22:14.848 DEBUG:teuthology.orchestra.run.smithi096:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-14T03:22:14.914 DEBUG:teuthology.orchestra.run.smithi096:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-14T03:22:14.959 DEBUG:teuthology.orchestra.run.smithi096:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-14T03:22:15.001 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:22:15.001 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-14T03:22:15.067 DEBUG:teuthology.orchestra.run.smithi137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-14T03:22:15.112 DEBUG:teuthology.orchestra.run.smithi137:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-14T03:22:15.165 DEBUG:teuthology.orchestra.run.smithi137:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-14T03:22:15.248 DEBUG:teuthology.orchestra.run.smithi137:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-14T03:22:15.292 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:22:15.292 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-14T03:22:15.359 DEBUG:teuthology.orchestra.run.smithi096:> sudo service rsyslog restart 2024-05-14T03:22:15.361 DEBUG:teuthology.orchestra.run.smithi137:> sudo service rsyslog restart 2024-05-14T03:22:15.417 INFO:teuthology.orchestra.run.smithi096.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-14T03:22:15.460 INFO:teuthology.orchestra.run.smithi137.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-14T03:22:15.856 INFO:teuthology.run_tasks:Running task internal.timer... 2024-05-14T03:22:15.866 INFO:teuthology.task.internal:Starting timer... 2024-05-14T03:22:15.866 INFO:teuthology.run_tasks:Running task pcp... 2024-05-14T03:22:15.887 INFO:teuthology.run_tasks:Running task selinux... 2024-05-14T03:22:15.896 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-05-14T03:22:15.896 DEBUG:teuthology.orchestra.run.smithi096:> sudo service auditd rotate 2024-05-14T03:22:16.008 INFO:teuthology.orchestra.run.smithi096.stdout:Rotating logs: 2024-05-14T03:22:16.010 DEBUG:teuthology.orchestra.run.smithi137:> sudo service auditd rotate 2024-05-14T03:22:16.108 INFO:teuthology.orchestra.run.smithi137.stdout:Rotating logs: 2024-05-14T03:22:16.110 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-05-14T03:22:16.110 DEBUG:teuthology.orchestra.run.smithi096:> /usr/sbin/getenforce 2024-05-14T03:22:16.135 INFO:teuthology.orchestra.run.smithi096.stdout:Permissive 2024-05-14T03:22:16.136 DEBUG:teuthology.orchestra.run.smithi137:> /usr/sbin/getenforce 2024-05-14T03:22:16.170 INFO:teuthology.orchestra.run.smithi137.stdout:Permissive 2024-05-14T03:22:16.170 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi096.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi137.front.sepia.ceph.com': 'permissive'} 2024-05-14T03:22:16.170 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-05-14T03:22:16.202 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:22:16.203 DEBUG:teuthology.orchestra.run.smithi137:> 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 2024-05-14T03:22:16.237 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:22:16.238 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-05-14T03:22:16.238 DEBUG:teuthology.orchestra.run.smithi096:> sudo /usr/sbin/setenforce permissive 2024-05-14T03:22:16.268 DEBUG:teuthology.orchestra.run.smithi137:> sudo /usr/sbin/setenforce permissive 2024-05-14T03:22:16.304 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-05-14T03:22:16.314 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-05-14T03:22:16.320 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-05-14T03:22:16.448 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-05-14T03:22:16.465 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-05-14T03:22:16.467 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi096.front.sepia.ceph.com,smithi137.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-05-14T03:28:12.543 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi096.front.sepia.ceph.com'), Remote(name='ubuntu@smithi137.front.sepia.ceph.com')] 2024-05-14T03:28:12.545 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:28:12.546 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi096.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:28:12.619 DEBUG:teuthology.orchestra.run.smithi096:> true 2024-05-14T03:28:12.690 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi096.front.sepia.ceph.com' 2024-05-14T03:28:12.690 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:28:12.690 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi137.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-14T03:28:12.765 DEBUG:teuthology.orchestra.run.smithi137:> true 2024-05-14T03:28:12.834 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi137.front.sepia.ceph.com' 2024-05-14T03:28:12.835 INFO:teuthology.run_tasks:Running task clock... 2024-05-14T03:28:12.848 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-05-14T03:28:12.848 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-14T03:28:12.848 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:12.851 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-05-14T03:28:12.851 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:12.881 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-05-14T03:28:12.895 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-05-14T03:28:12.910 INFO:teuthology.orchestra.run.smithi137.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-05-14T03:28:12.924 INFO:teuthology.orchestra.run.smithi137.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-05-14T03:28:12.969 INFO:teuthology.orchestra.run.smithi096.stderr:sudo: ntpd: command not found 2024-05-14T03:28:12.979 INFO:teuthology.orchestra.run.smithi096.stdout:506 Cannot talk to daemon 2024-05-14T03:28:12.992 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-05-14T03:28:12.999 INFO:teuthology.orchestra.run.smithi137.stderr:sudo: ntpd: command not found 2024-05-14T03:28:13.006 INFO:teuthology.orchestra.run.smithi096.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-05-14T03:28:13.010 INFO:teuthology.orchestra.run.smithi137.stdout:506 Cannot talk to daemon 2024-05-14T03:28:13.023 INFO:teuthology.orchestra.run.smithi137.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-05-14T03:28:13.037 INFO:teuthology.orchestra.run.smithi137.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-05-14T03:28:13.080 INFO:teuthology.orchestra.run.smithi096.stderr:bash: ntpq: command not found 2024-05-14T03:28:13.083 INFO:teuthology.orchestra.run.smithi096.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-14T03:28:13.083 INFO:teuthology.orchestra.run.smithi096.stdout:=============================================================================== 2024-05-14T03:28:13.083 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.084 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.084 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.084 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.105 INFO:teuthology.orchestra.run.smithi137.stderr:bash: ntpq: command not found 2024-05-14T03:28:13.108 INFO:teuthology.orchestra.run.smithi137.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-14T03:28:13.108 INFO:teuthology.orchestra.run.smithi137.stdout:=============================================================================== 2024-05-14T03:28:13.108 INFO:teuthology.orchestra.run.smithi137.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.109 INFO:teuthology.orchestra.run.smithi137.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.109 INFO:teuthology.orchestra.run.smithi137.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.109 INFO:teuthology.orchestra.run.smithi137.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:28:13.110 INFO:teuthology.run_tasks:Running task pexec... 2024-05-14T03:28:13.119 INFO:teuthology.task.pexec:Executing custom commands... 2024-05-14T03:28:13.119 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:28:13.119 DEBUG:teuthology.orchestra.run.smithi096:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-05-14T03:28:13.120 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi137.front.sepia.ceph.com 2024-05-14T03:28:13.120 DEBUG:teuthology.orchestra.run.smithi137:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-05-14T03:28:13.876 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:22 ago on Tue 14 May 2024 03:26:51 AM UTC. 2024-05-14T03:28:13.906 INFO:teuthology.orchestra.run.smithi137.stdout:Last metadata expiration check: 0:01:22 ago on Tue 14 May 2024 03:26:51 AM UTC. 2024-05-14T03:28:16.059 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-05-14T03:28:16.060 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout: Package Architecture Version Repository Size 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout:Resetting modules: 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout: container-tools 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:16.061 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:16.063 INFO:teuthology.orchestra.run.smithi137.stdout:Dependencies resolved. 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout: Package Architecture Version Repository Size 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout:Resetting modules: 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout: container-tools 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction Summary 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:16.065 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:16.308 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-05-14T03:28:16.320 INFO:teuthology.orchestra.run.smithi137.stdout:Complete! 2024-05-14T03:28:17.088 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:01:25 ago on Tue 14 May 2024 03:26:51 AM UTC. 2024-05-14T03:28:17.109 INFO:teuthology.orchestra.run.smithi137.stdout:Last metadata expiration check: 0:01:25 ago on Tue 14 May 2024 03:26:51 AM UTC. 2024-05-14T03:28:19.269 INFO:teuthology.orchestra.run.smithi137.stdout:Dependencies resolved. 2024-05-14T03:28:19.276 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-05-14T03:28:19.307 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:19.307 INFO:teuthology.orchestra.run.smithi137.stdout: Package Arch Version Repository Size 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout:Installing group/module packages: 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: aardvark-dns x86_64 2:1.10.0-1.module_el8+871+552be958 appstream 1.0 M 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: buildah x86_64 2:1.33.6-2.module_el8+976+11360731 appstream 9.6 M 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: cockpit-podman noarch 84.1-1.module_el8+977+8ab54275 appstream 689 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: crun x86_64 1.14.3-2.module_el8+968+fbb249c7 appstream 258 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: netavark x86_64 2:1.10.3-1.module_el8+951+32019cde appstream 4.1 M 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: python3-podman noarch 4.9.0-1.module_el8+847+7863d4e6 appstream 180 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: skopeo x86_64 2:1.14.3-0.1.module_el8+885+7da147f3 appstream 8.8 M 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: toolbox x86_64 0.0.99.5-2.module_el8+971+3d3df00d appstream 2.5 M 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: udica noarch 0.2.6-20.module_el8+804+f131391c appstream 53 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout:Installing dependencies: 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 appstream 25 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pyxdg noarch 0.25-16.el8 appstream 94 k 2024-05-14T03:28:19.308 INFO:teuthology.orchestra.run.smithi137.stdout: yajl x86_64 2.1.0-12.el8 appstream 41 k 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:Installing weak dependencies: 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: criu-libs x86_64 3.15-3.module_el8.7.0+1216+b022c01d appstream 38 k 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:Installing module profiles: 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: container-tools/common 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:Enabling module streams: 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: container-tools rhel8 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction Summary 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:================================================================================ 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout:Install 13 Packages 2024-05-14T03:28:19.309 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:19.310 INFO:teuthology.orchestra.run.smithi137.stdout:Total download size: 27 M 2024-05-14T03:28:19.310 INFO:teuthology.orchestra.run.smithi137.stdout:Installed size: 91 M 2024-05-14T03:28:19.310 INFO:teuthology.orchestra.run.smithi137.stdout:Downloading Packages: 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout:Installing group/module packages: 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: aardvark-dns x86_64 2:1.10.0-1.module_el8+871+552be958 appstream 1.0 M 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: buildah x86_64 2:1.33.6-2.module_el8+976+11360731 appstream 9.6 M 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: cockpit-podman noarch 84.1-1.module_el8+977+8ab54275 appstream 689 k 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: crun x86_64 1.14.3-2.module_el8+968+fbb249c7 appstream 258 k 2024-05-14T03:28:19.313 INFO:teuthology.orchestra.run.smithi096.stdout: netavark x86_64 2:1.10.3-1.module_el8+951+32019cde appstream 4.1 M 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: python3-podman noarch 4.9.0-1.module_el8+847+7863d4e6 appstream 180 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: skopeo x86_64 2:1.14.3-0.1.module_el8+885+7da147f3 appstream 8.8 M 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: toolbox x86_64 0.0.99.5-2.module_el8+971+3d3df00d appstream 2.5 M 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: udica noarch 0.2.6-20.module_el8+804+f131391c appstream 53 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pytoml noarch 0.1.14-5.git7dea353.el8 appstream 25 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyxdg noarch 0.25-16.el8 appstream 94 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: yajl x86_64 2.1.0-12.el8 appstream 41 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout:Installing weak dependencies: 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: criu-libs x86_64 3.15-3.module_el8.7.0+1216+b022c01d appstream 38 k 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout:Installing module profiles: 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: container-tools/common 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:19.314 INFO:teuthology.orchestra.run.smithi096.stdout:Enabling module streams: 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout: container-tools rhel8 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout:Install 13 Packages 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:19.315 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 27 M 2024-05-14T03:28:19.316 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 91 M 2024-05-14T03:28:19.316 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-05-14T03:28:19.602 INFO:teuthology.orchestra.run.smithi096.stdout:(1/13): cockpit-podman-84.1-1.module_el8+977+8a 2.9 MB/s | 689 kB 00:00 2024-05-14T03:28:19.635 INFO:teuthology.orchestra.run.smithi096.stdout:(2/13): aardvark-dns-1.10.0-1.module_el8+871+55 3.7 MB/s | 1.0 MB 00:00 2024-05-14T03:28:19.703 INFO:teuthology.orchestra.run.smithi096.stdout:(3/13): criu-libs-3.15-3.module_el8.7.0+1216+b0 373 kB/s | 38 kB 00:00 2024-05-14T03:28:19.729 INFO:teuthology.orchestra.run.smithi137.stdout:(1/13): cockpit-podman-84.1-1.module_el8+977+8a 2.9 MB/s | 689 kB 00:00 2024-05-14T03:28:19.736 INFO:teuthology.orchestra.run.smithi096.stdout:(4/13): crun-1.14.3-2.module_el8+968+fbb249c7.x 2.5 MB/s | 258 kB 00:00 2024-05-14T03:28:19.762 INFO:teuthology.orchestra.run.smithi137.stdout:(2/13): aardvark-dns-1.10.0-1.module_el8+871+55 3.8 MB/s | 1.0 MB 00:00 2024-05-14T03:28:19.786 INFO:teuthology.orchestra.run.smithi096.stdout:(5/13): python3-podman-4.9.0-1.module_el8+847+7 3.5 MB/s | 180 kB 00:00 2024-05-14T03:28:19.788 INFO:teuthology.orchestra.run.smithi137.stdout:(3/13): criu-libs-3.15-3.module_el8.7.0+1216+b0 645 kB/s | 38 kB 00:00 2024-05-14T03:28:19.813 INFO:teuthology.orchestra.run.smithi137.stdout:(4/13): crun-1.14.3-2.module_el8+968+fbb249c7.x 5.0 MB/s | 258 kB 00:00 2024-05-14T03:28:19.836 INFO:teuthology.orchestra.run.smithi096.stdout:(6/13): python3-pytoml-0.1.14-5.git7dea353.el8. 494 kB/s | 25 kB 00:00 2024-05-14T03:28:19.863 INFO:teuthology.orchestra.run.smithi137.stdout:(5/13): python3-podman-4.9.0-1.module_el8+847+7 3.5 MB/s | 180 kB 00:00 2024-05-14T03:28:19.887 INFO:teuthology.orchestra.run.smithi096.stdout:(7/13): python3-pyxdg-0.25-16.el8.noarch.rpm 1.8 MB/s | 94 kB 00:00 2024-05-14T03:28:19.905 INFO:teuthology.orchestra.run.smithi137.stdout:(6/13): python3-pytoml-0.1.14-5.git7dea353.el8. 593 kB/s | 25 kB 00:00 2024-05-14T03:28:19.964 INFO:teuthology.orchestra.run.smithi137.stdout:(7/13): netavark-1.10.3-1.module_el8+951+32019c 23 MB/s | 4.1 MB 00:00 2024-05-14T03:28:19.981 INFO:teuthology.orchestra.run.smithi137.stdout:(8/13): python3-pyxdg-0.25-16.el8.noarch.rpm 1.2 MB/s | 94 kB 00:00 2024-05-14T03:28:20.090 INFO:teuthology.orchestra.run.smithi137.stdout:(9/13): buildah-1.33.6-2.module_el8+976+1136073 16 MB/s | 9.6 MB 00:00 2024-05-14T03:28:20.104 INFO:teuthology.orchestra.run.smithi096.stdout:(8/13): skopeo-1.14.3-0.1.module_el8+885+7da147 41 MB/s | 8.8 MB 00:00 2024-05-14T03:28:20.179 INFO:teuthology.orchestra.run.smithi096.stdout:(9/13): toolbox-0.0.99.5-2.module_el8+971+3d3df 34 MB/s | 2.5 MB 00:00 2024-05-14T03:28:20.190 INFO:teuthology.orchestra.run.smithi137.stdout:(10/13): toolbox-0.0.99.5-2.module_el8+971+3d3d 12 MB/s | 2.5 MB 00:00 2024-05-14T03:28:20.229 INFO:teuthology.orchestra.run.smithi096.stdout:(10/13): udica-0.2.6-20.module_el8+804+f131391c 1.0 MB/s | 53 kB 00:00 2024-05-14T03:28:20.280 INFO:teuthology.orchestra.run.smithi096.stdout:(11/13): yajl-2.1.0-12.el8.x86_64.rpm 819 kB/s | 41 kB 00:00 2024-05-14T03:28:20.290 INFO:teuthology.orchestra.run.smithi137.stdout:(11/13): skopeo-1.14.3-0.1.module_el8+885+7da14 27 MB/s | 8.8 MB 00:00 2024-05-14T03:28:20.315 INFO:teuthology.orchestra.run.smithi137.stdout:(12/13): yajl-2.1.0-12.el8.x86_64.rpm 328 kB/s | 41 kB 00:00 2024-05-14T03:28:20.341 INFO:teuthology.orchestra.run.smithi137.stdout:(13/13): udica-0.2.6-20.module_el8+804+f131391c 210 kB/s | 53 kB 00:00 2024-05-14T03:28:20.341 INFO:teuthology.orchestra.run.smithi137.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:28:20.341 INFO:teuthology.orchestra.run.smithi137.stdout:Total 27 MB/s | 27 MB 00:01 2024-05-14T03:28:20.610 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction check 2024-05-14T03:28:20.631 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction check succeeded. 2024-05-14T03:28:20.631 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction test 2024-05-14T03:28:20.886 INFO:teuthology.orchestra.run.smithi137.stdout:Transaction test succeeded. 2024-05-14T03:28:20.889 INFO:teuthology.orchestra.run.smithi137.stdout:Running transaction 2024-05-14T03:28:21.022 INFO:teuthology.orchestra.run.smithi096.stdout:(12/13): netavark-1.10.3-1.module_el8+951+32019 3.1 MB/s | 4.1 MB 00:01 2024-05-14T03:28:21.130 INFO:teuthology.orchestra.run.smithi096.stdout:(13/13): buildah-1.33.6-2.module_el8+976+113607 5.5 MB/s | 9.6 MB 00:01 2024-05-14T03:28:21.130 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:28:21.131 INFO:teuthology.orchestra.run.smithi096.stdout:Total 15 MB/s | 27 MB 00:01 2024-05-14T03:28:21.404 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-05-14T03:28:21.425 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-05-14T03:28:21.425 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-05-14T03:28:21.523 INFO:teuthology.orchestra.run.smithi137.stdout: Preparing : 1/1 2024-05-14T03:28:21.694 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-05-14T03:28:21.698 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-05-14T03:28:22.345 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-05-14T03:28:22.454 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : yajl-2.1.0-12.el8.x86_64 1/13 2024-05-14T03:28:22.655 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 2/13 2024-05-14T03:28:22.801 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 3/13 2024-05-14T03:28:22.995 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 4/13 2024-05-14T03:28:23.227 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 5/13 2024-05-14T03:28:23.309 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : yajl-2.1.0-12.el8.x86_64 1/13 2024-05-14T03:28:23.560 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 2/13 2024-05-14T03:28:23.731 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pyxdg-0.25-16.el8.noarch 3/13 2024-05-14T03:28:23.744 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x8 6/13 2024-05-14T03:28:23.958 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 4/13 2024-05-14T03:28:24.208 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 5/13 2024-05-14T03:28:24.703 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 7/13 2024-05-14T03:28:24.756 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x8 6/13 2024-05-14T03:28:24.969 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 8/13 2024-05-14T03:28:25.156 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 9/13 2024-05-14T03:28:25.574 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : python3-podman-4.9.0-1.module_el8+847+7863d4e6.noa 10/13 2024-05-14T03:28:25.693 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 7/13 2024-05-14T03:28:25.768 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 11/13 2024-05-14T03:28:25.954 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : udica-0.2.6-20.module_el8+804+f131391c.noarch 12/13 2024-05-14T03:28:25.978 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 8/13 2024-05-14T03:28:26.175 INFO:teuthology.orchestra.run.smithi137.stdout: Installing : cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 13/13 2024-05-14T03:28:26.190 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 9/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Running scriptlet: cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 13/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x8 1/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 2/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 3/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 5/13 2024-05-14T03:28:26.587 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 6/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : python3-podman-4.9.0-1.module_el8+847+7863d4e6.noa 7/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 8/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 9/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 10/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 11/13 2024-05-14T03:28:26.588 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : udica-0.2.6-20.module_el8+804+f131391c.noarch 12/13 2024-05-14T03:28:26.672 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-podman-4.9.0-1.module_el8+847+7863d4e6.noa 10/13 2024-05-14T03:28:26.911 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 11/13 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 13/13 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout:Installed: 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout: aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x86_64 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout: buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 2024-05-14T03:28:27.091 INFO:teuthology.orchestra.run.smithi137.stdout: cockpit-podman-84.1-1.module_el8+977+8ab54275.noarch 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: python3-podman-4.9.0-1.module_el8+847+7863d4e6.noarch 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: python3-pyxdg-0.25-16.el8.noarch 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: udica-0.2.6-20.module_el8+804+f131391c.noarch 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: yajl-2.1.0-12.el8.x86_64 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:28:27.092 INFO:teuthology.orchestra.run.smithi137.stdout:Complete! 2024-05-14T03:28:27.196 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : udica-0.2.6-20.module_el8+804+f131391c.noarch 12/13 2024-05-14T03:28:27.387 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 13/13 2024-05-14T03:28:27.428 DEBUG:teuthology.parallel:result is None 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 13/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x8 1/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 2/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : cockpit-podman-84.1-1.module_el8+977+8ab54275.noar 3/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_ 4/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 5/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 6/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-podman-4.9.0-1.module_el8+847+7863d4e6.noa 7/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pytoml-0.1.14-5.git7dea353.el8.noarch 8/13 2024-05-14T03:28:27.812 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-pyxdg-0.25-16.el8.noarch 9/13 2024-05-14T03:28:27.813 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 10/13 2024-05-14T03:28:27.813 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 11/13 2024-05-14T03:28:27.813 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : udica-0.2.6-20.module_el8+804+f131391c.noarch 12/13 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 13/13 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: aardvark-dns-2:1.10.0-1.module_el8+871+552be958.x86_64 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: buildah-2:1.33.6-2.module_el8+976+11360731.x86_64 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: cockpit-podman-84.1-1.module_el8+977+8ab54275.noarch 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: criu-libs-3.15-3.module_el8.7.0+1216+b022c01d.x86_64 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: crun-1.14.3-2.module_el8+968+fbb249c7.x86_64 2024-05-14T03:28:28.327 INFO:teuthology.orchestra.run.smithi096.stdout: netavark-2:1.10.3-1.module_el8+951+32019cde.x86_64 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: python3-podman-4.9.0-1.module_el8+847+7863d4e6.noarch 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pytoml-0.1.14-5.git7dea353.el8.noarch 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: python3-pyxdg-0.25-16.el8.noarch 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: skopeo-2:1.14.3-0.1.module_el8+885+7da147f3.x86_64 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: toolbox-0.0.99.5-2.module_el8+971+3d3df00d.x86_64 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: udica-0.2.6-20.module_el8+804+f131391c.noarch 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: yajl-2.1.0-12.el8.x86_64 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:28:28.328 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-05-14T03:28:28.686 DEBUG:teuthology.parallel:result is None 2024-05-14T03:28:28.686 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-05-14T03:28:28.697 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-05-14T03:28:28.697 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:28:28.698 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:28:28.715 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-05-14T03:28:28.715 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_1 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 165577 Links: 1 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:28:27.535147288 +0000 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:27:41.424939007 +0000 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:27:41.424939007 +0000 2024-05-14T03:28:28.773 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:28:28.774 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-14T03:28:28.838 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:28:28.838 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:28:28.838 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000301156 s, 1.7 MB/s 2024-05-14T03:28:28.839 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-14T03:28:28.897 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_2 2024-05-14T03:28:28.954 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 170182 Links: 1 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:28:27.535147288 +0000 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:27:41.787930864 +0000 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:27:41.787930864 +0000 2024-05-14T03:28:28.955 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:28:28.955 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-14T03:28:29.020 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:28:29.020 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:28:29.020 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000235541 s, 2.2 MB/s 2024-05-14T03:28:29.021 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-14T03:28:29.080 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_3 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 172046 Links: 1 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:28:27.535147288 +0000 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:27:42.120923394 +0000 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:27:42.120923394 +0000 2024-05-14T03:28:29.139 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:28:29.140 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-14T03:28:29.204 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:28:29.204 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:28:29.204 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000252555 s, 2.0 MB/s 2024-05-14T03:28:29.205 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-14T03:28:29.264 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/vg_nvme/lv_4 2024-05-14T03:28:29.322 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 165736 Links: 1 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:28:27.535147288 +0000 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:27:42.458915812 +0000 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:27:42.458915812 +0000 2024-05-14T03:28:29.323 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:28:29.323 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-14T03:28:29.388 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:28:29.388 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:28:29.388 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000313186 s, 1.6 MB/s 2024-05-14T03:28:29.389 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-14T03:28:29.448 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:29.560 INFO:teuthology.orchestra.run.smithi096.stdout:loop 2024-05-14T03:28:29.561 INFO:tasks.nvme_loop:Connecting nvme_loop smithi096:/dev/vg_nvme/lv_1... 2024-05-14T03:28:29.561 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:29.595 INFO:teuthology.orchestra.run.smithi096.stdout:1 2024-05-14T03:28:29.628 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/vg_nvme/lv_11 2024-05-14T03:28:29.667 INFO:tasks.nvme_loop:Connecting nvme_loop smithi096:/dev/vg_nvme/lv_2... 2024-05-14T03:28:29.667 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:29.742 INFO:teuthology.orchestra.run.smithi096.stdout:1 2024-05-14T03:28:29.775 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/vg_nvme/lv_21 2024-05-14T03:28:29.812 INFO:tasks.nvme_loop:Connecting nvme_loop smithi096:/dev/vg_nvme/lv_3... 2024-05-14T03:28:29.812 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:29.888 INFO:teuthology.orchestra.run.smithi096.stdout:1 2024-05-14T03:28:29.921 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/vg_nvme/lv_31 2024-05-14T03:28:29.957 INFO:tasks.nvme_loop:Connecting nvme_loop smithi096:/dev/vg_nvme/lv_4... 2024-05-14T03:28:29.958 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:28:30.033 INFO:teuthology.orchestra.run.smithi096.stdout:1 2024-05-14T03:28:30.065 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/vg_nvme/lv_41 2024-05-14T03:28:30.102 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:28:30.102 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:28:30.159 DEBUG:teuthology.orchestra.run.smithi096:> sudo nvme list 2024-05-14T03:28:30.224 INFO:teuthology.orchestra.run.smithi096.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/nvme0n1 PHFT620400NH400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/nvme1n1 41636239f02ab0c0a1eb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/nvme2n1 00f3eeca7bb5ddf7234b Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/nvme3n1 1619d508578d0a79fa30 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:30.225 INFO:teuthology.orchestra.run.smithi096.stdout:/dev/nvme4n1 b9aed1e6e30df8b9bd6e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:30.226 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-14T03:28:30.226 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:28:30.226 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/scratch_devs 2024-05-14T03:28:30.293 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:28:30.294 DEBUG:teuthology.orchestra.run.smithi137:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:28:30.316 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-05-14T03:28:30.317 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_1 2024-05-14T03:28:30.378 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 172079 Links: 1 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:28:26.309527475 +0000 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:27:41.419761164 +0000 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:27:41.419761164 +0000 2024-05-14T03:28:30.379 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:28:30.379 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-05-14T03:28:30.448 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:28:30.448 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:28:30.448 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000273169 s, 1.9 MB/s 2024-05-14T03:28:30.449 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-05-14T03:28:30.511 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_2 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 166516 Links: 1 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:28:26.309527475 +0000 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:27:41.745755470 +0000 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:27:41.745755470 +0000 2024-05-14T03:28:30.570 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:28:30.571 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-05-14T03:28:30.637 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:28:30.637 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:28:30.638 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000246293 s, 2.1 MB/s 2024-05-14T03:28:30.639 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-05-14T03:28:30.700 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_3 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 167334 Links: 1 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:28:26.309527475 +0000 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:27:42.077749672 +0000 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:27:42.077749672 +0000 2024-05-14T03:28:30.759 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:28:30.760 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-05-14T03:28:30.827 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:28:30.827 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:28:30.827 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000166396 s, 3.1 MB/s 2024-05-14T03:28:30.827 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-05-14T03:28:30.885 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/vg_nvme/lv_4 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 171192 Links: 1 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:device_t:s0 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:28:26.309527475 +0000 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:27:42.420743682 +0000 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:27:42.420743682 +0000 2024-05-14T03:28:30.944 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:28:30.944 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-05-14T03:28:31.010 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:28:31.010 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:28:31.010 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000208258 s, 2.5 MB/s 2024-05-14T03:28:31.011 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-05-14T03:28:31.069 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:31.196 INFO:teuthology.orchestra.run.smithi137.stdout:loop 2024-05-14T03:28:31.197 INFO:tasks.nvme_loop:Connecting nvme_loop smithi137:/dev/vg_nvme/lv_1... 2024-05-14T03:28:31.197 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:31.232 INFO:teuthology.orchestra.run.smithi137.stdout:1 2024-05-14T03:28:31.265 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/vg_nvme/lv_11 2024-05-14T03:28:31.303 INFO:tasks.nvme_loop:Connecting nvme_loop smithi137:/dev/vg_nvme/lv_2... 2024-05-14T03:28:31.304 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:31.379 INFO:teuthology.orchestra.run.smithi137.stdout:1 2024-05-14T03:28:31.412 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/vg_nvme/lv_21 2024-05-14T03:28:31.449 INFO:tasks.nvme_loop:Connecting nvme_loop smithi137:/dev/vg_nvme/lv_3... 2024-05-14T03:28:31.449 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:31.524 INFO:teuthology.orchestra.run.smithi137.stdout:1 2024-05-14T03:28:31.556 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/vg_nvme/lv_31 2024-05-14T03:28:31.593 INFO:tasks.nvme_loop:Connecting nvme_loop smithi137:/dev/vg_nvme/lv_4... 2024-05-14T03:28:31.594 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:28:31.669 INFO:teuthology.orchestra.run.smithi137.stdout:1 2024-05-14T03:28:31.701 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/vg_nvme/lv_41 2024-05-14T03:28:31.738 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:28:31.738 DEBUG:teuthology.orchestra.run.smithi137:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:28:31.797 DEBUG:teuthology.orchestra.run.smithi137:> sudo nvme list 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:Node SN Model Namespace Usage Format FW Rev 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/nvme0n1 CVFT6233004A400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/nvme1n1 d0c5bb8f8119628d4a2c Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/nvme2n1 2279e8ea5a301dd5033f Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/nvme3n1 894fe7013a77521ae429 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:31.863 INFO:teuthology.orchestra.run.smithi137.stdout:/dev/nvme4n1 4e8584f09df680f22345 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-5 2024-05-14T03:28:31.864 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-14T03:28:31.864 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:28:31.864 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/scratch_devs 2024-05-14T03:28:31.931 INFO:teuthology.run_tasks:Running task cephadm... 2024-05-14T03:28:32.031 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\\)'], 'sha1': '2965081fb1a343a09e00ceeede998525f5c6cb5e'} 2024-05-14T03:28:32.031 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e 2024-05-14T03:28:32.031 INFO:tasks.cephadm:Cluster fsid is 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:28:32.031 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-05-14T03:28:32.032 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-05-14T03:28:32.032 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi096': '172.21.15.96', 'mon.smithi137': '172.21.15.137'} 2024-05-14T03:28:32.032 INFO:tasks.cephadm:Normalizing hostnames... 2024-05-14T03:28:32.032 DEBUG:teuthology.orchestra.run.smithi096:> sudo hostname $(hostname -s) 2024-05-14T03:28:32.064 DEBUG:teuthology.orchestra.run.smithi137:> sudo hostname $(hostname -s) 2024-05-14T03:28:32.092 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-05-14T03:28:32.092 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=2965081fb1a343a09e00ceeede998525f5c6cb5e 2024-05-14T03:28:32.333 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '2965081fb1a343a09e00ceeede998525f5c6cb5e', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic/55142/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.2-1343-g2965081f', 'node_name': '172.21.5.31+adami01', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos8,DIST=centos8,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.2-1343.g2965081f'}, 'url': 'https://2.chacra.ceph.com/r/ceph/reef/2965081fb1a343a09e00ceeede998525f5c6cb5e/centos/8/flavors/default/', 'distro_codename': None, 'modified': '2024-05-13 18:29:38.458722', 'distro_version': '8', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/reef/2965081fb1a343a09e00ceeede998525f5c6cb5e/centos/8/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-05-14T03:28:32.576 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref reef, sha1 2965081fb1a343a09e00ceeede998525f5c6cb5e from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F8%2Fx86_64&flavor=default&sha1=2965081fb1a343a09e00ceeede998525f5c6cb5e 2024-05-14T03:28:32.578 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/reef/2965081fb1a343a09e00ceeede998525f5c6cb5e/centos/8/x86_64/flavors/default/cephadm 2024-05-14T03:28:32.578 DEBUG:teuthology.orchestra.run.smithi096:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/reef/2965081fb1a343a09e00ceeede998525f5c6cb5e/centos/8/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:32.978 INFO:teuthology.orchestra.run.smithi096.stdout:-rw-rw-r--. 1 ubuntu ubuntu 703022 May 14 03:28 /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:32.978 DEBUG:teuthology.orchestra.run.smithi137:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/reef/2965081fb1a343a09e00ceeede998525f5c6cb5e/centos/8/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:33.381 INFO:teuthology.orchestra.run.smithi137.stdout:-rw-rw-r--. 1 ubuntu ubuntu 703022 May 14 03:28 /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:33.382 DEBUG:teuthology.orchestra.run.smithi096:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:33.405 DEBUG:teuthology.orchestra.run.smithi137:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-05-14T03:28:33.436 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e on all hosts... 2024-05-14T03:28:33.436 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e pull 2024-05-14T03:28:33.447 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e pull 2024-05-14T03:28:35.257 INFO:teuthology.orchestra.run.smithi137.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e... 2024-05-14T03:28:35.265 INFO:teuthology.orchestra.run.smithi096.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e... 2024-05-14T03:29:02.005 INFO:teuthology.orchestra.run.smithi096.stdout:{ 2024-05-14T03:29:02.005 INFO:teuthology.orchestra.run.smithi096.stdout: "ceph_version": "ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable)", 2024-05-14T03:29:02.005 INFO:teuthology.orchestra.run.smithi096.stdout: "image_id": "a04a73ffe07969b07057db75204012857aea1fdc1d3eeb4e5270ae40eb9fbe46", 2024-05-14T03:29:02.005 INFO:teuthology.orchestra.run.smithi096.stdout: "repo_digests": [ 2024-05-14T03:29:02.005 INFO:teuthology.orchestra.run.smithi096.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:0764a18419358e118953c7a2137c56896dd1b4a53ba86e3e915181d824ff62f1" 2024-05-14T03:29:02.006 INFO:teuthology.orchestra.run.smithi096.stdout: ] 2024-05-14T03:29:02.006 INFO:teuthology.orchestra.run.smithi096.stdout:} 2024-05-14T03:29:05.862 INFO:teuthology.orchestra.run.smithi137.stdout:{ 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout: "ceph_version": "ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable)", 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout: "image_id": "a04a73ffe07969b07057db75204012857aea1fdc1d3eeb4e5270ae40eb9fbe46", 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout: "repo_digests": [ 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:0764a18419358e118953c7a2137c56896dd1b4a53ba86e3e915181d824ff62f1" 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout: ] 2024-05-14T03:29:05.863 INFO:teuthology.orchestra.run.smithi137.stdout:} 2024-05-14T03:29:05.883 DEBUG:teuthology.orchestra.run.smithi096:> sudo mkdir -p /etc/ceph 2024-05-14T03:29:05.919 DEBUG:teuthology.orchestra.run.smithi137:> sudo mkdir -p /etc/ceph 2024-05-14T03:29:05.947 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 777 /etc/ceph 2024-05-14T03:29:05.989 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 777 /etc/ceph 2024-05-14T03:29:06.015 INFO:tasks.cephadm:Writing seed config... 2024-05-14T03:29:06.016 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-05-14T03:29:06.016 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-05-14T03:29:06.017 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-05-14T03:29:06.018 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:29:06.018 DEBUG:teuthology.orchestra.run.smithi096:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-05-14T03:29:06.084 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 09e7892c-11a2-11ef-bc98-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-05-14T03:29:06.085 DEBUG:teuthology.orchestra.run.smithi096:mon.smithi096> sudo journalctl -f -n 0 -u ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service 2024-05-14T03:29:06.127 INFO:tasks.cephadm:Bootstrapping... 2024-05-14T03:29:06.127 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e -v bootstrap --fsid 09e7892c-11a2-11ef-bc98-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.96 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:29:06.156 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:-- Logs begin at Tue 2024-05-14 03:21:49 UTC. -- 2024-05-14T03:29:06.293 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:29:06.293 INFO:teuthology.orchestra.run.smithi096.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e', '-v', 'bootstrap', '--fsid', '09e7892c-11a2-11ef-bc98-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.96', '--skip-admin-label'] 2024-05-14T03:29:06.323 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stdout 4.9.4-dev 2024-05-14T03:29:06.323 INFO:teuthology.orchestra.run.smithi096.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-05-14T03:29:06.324 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying podman|docker is present... 2024-05-14T03:29:06.355 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stdout 4.9.4-dev 2024-05-14T03:29:06.356 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying lvm2 is present... 2024-05-14T03:29:06.356 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying time synchronization is in place... 2024-05-14T03:29:06.362 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-05-14T03:29:06.362 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-05-14T03:29:06.369 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-05-14T03:29:06.369 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:29:06.374 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout enabled 2024-05-14T03:29:06.380 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout active 2024-05-14T03:29:06.380 INFO:teuthology.orchestra.run.smithi096.stdout:Unit chronyd.service is enabled and running 2024-05-14T03:29:06.380 INFO:teuthology.orchestra.run.smithi096.stdout:Repeating the final host check... 2024-05-14T03:29:06.411 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stdout 4.9.4-dev 2024-05-14T03:29:06.412 INFO:teuthology.orchestra.run.smithi096.stdout:podman (/bin/podman) version 4.9.4 is present 2024-05-14T03:29:06.412 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl is present 2024-05-14T03:29:06.412 INFO:teuthology.orchestra.run.smithi096.stdout:lvcreate is present 2024-05-14T03:29:06.418 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-05-14T03:29:06.418 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-05-14T03:29:06.423 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-05-14T03:29:06.423 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:29:06.429 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout enabled 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout active 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Unit chronyd.service is enabled and running 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Host looks OK 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Cluster fsid: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Acquiring lock 140633033690528 on /run/cephadm/09e7892c-11a2-11ef-bc98-c7b262605968.lock 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Lock 140633033690528 acquired on /run/cephadm/09e7892c-11a2-11ef-bc98-c7b262605968.lock 2024-05-14T03:29:06.436 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying IP 172.21.15.96 port 3300 ... 2024-05-14T03:29:06.437 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying IP 172.21.15.96 port 6789 ... 2024-05-14T03:29:06.437 INFO:teuthology.orchestra.run.smithi096.stdout:Base mon IP(s) is [172.21.15.96:3300, 172.21.15.96:6789], mon addrv is [v2:172.21.15.96:3300,v1:172.21.15.96:6789] 2024-05-14T03:29:06.440 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.96 metric 100 2024-05-14T03:29:06.440 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.96 metric 100 2024-05-14T03:29:06.443 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-05-14T03:29:06.443 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-05-14T03:29:06.443 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 1024 expires 1797sec hoplimit 64 pref medium 2024-05-14T03:29:06.445 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-05-14T03:29:06.445 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-05-14T03:29:06.445 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-05-14T03:29:06.445 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-05-14T03:29:06.446 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:cc0d/64 scope link 2024-05-14T03:29:06.446 INFO:teuthology.orchestra.run.smithi096.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-05-14T03:29:06.446 INFO:teuthology.orchestra.run.smithi096.stdout:Mon IP `172.21.15.96` is in CIDR network `172.21.0.0/20` 2024-05-14T03:29:06.446 INFO:teuthology.orchestra.run.smithi096.stdout:Mon IP `172.21.15.96` is in CIDR network `172.21.0.0/20` 2024-05-14T03:29:06.446 INFO:teuthology.orchestra.run.smithi096.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-05-14T03:29:06.447 INFO:teuthology.orchestra.run.smithi096.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-05-14T03:29:06.447 INFO:teuthology.orchestra.run.smithi096.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e... 2024-05-14T03:29:06.941 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stdout a04a73ffe07969b07057db75204012857aea1fdc1d3eeb4e5270ae40eb9fbe46 2024-05-14T03:29:06.941 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e... 2024-05-14T03:29:06.942 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Getting image source signatures 2024-05-14T03:29:06.942 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Copying blob sha256:bf5b95bd68251da39c6cd2eb96c6ba4138bb37a62bdc39287908b25e92047d7e 2024-05-14T03:29:06.942 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Copying blob sha256:4a53206f1a70dca23a56afb8d3479f4bca659b8fe70577a61d0d3e0bd8d72af0 2024-05-14T03:29:06.942 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Copying config sha256:a04a73ffe07969b07057db75204012857aea1fdc1d3eeb4e5270ae40eb9fbe46 2024-05-14T03:29:06.942 INFO:teuthology.orchestra.run.smithi096.stdout:/bin/podman: stderr Writing manifest to image destination 2024-05-14T03:29:07.987 INFO:teuthology.orchestra.run.smithi096.stdout:ceph: stdout ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable) 2024-05-14T03:29:07.987 INFO:teuthology.orchestra.run.smithi096.stdout:Ceph version: ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable) 2024-05-14T03:29:07.987 INFO:teuthology.orchestra.run.smithi096.stdout:Extracting ceph user uid/gid from container image... 2024-05-14T03:29:09.005 INFO:teuthology.orchestra.run.smithi096.stdout:stat: stdout 167 167 2024-05-14T03:29:09.005 INFO:teuthology.orchestra.run.smithi096.stdout:Creating initial keys... 2024-05-14T03:29:10.048 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph-authtool: stdout AQCF2kJmcnlEFRAA1QPzq9vt4vF/f9d+dSrVFQ== 2024-05-14T03:29:11.010 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph-authtool: stdout AQCG2kJmHyo/GBAAnnxLa9JRfm/SOLkjcTD8RA== 2024-05-14T03:29:14.061 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph-authtool: stdout AQCH2kJmsD7zFRAA5+l0156bUhn3k//EoqYGUw== 2024-05-14T03:29:14.061 INFO:teuthology.orchestra.run.smithi096.stdout:Creating initial monmap... 2024-05-14T03:29:15.107 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = pacific 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:monmaptool for smithi096 [v2:172.21.15.96:3300,v1:172.21.15.96:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:setting min_mon_release = pacific 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: set fsid to 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:29:15.108 INFO:teuthology.orchestra.run.smithi096.stdout:Creating mon... 2024-05-14T03:29:16.071 INFO:teuthology.orchestra.run.smithi096.stdout:create mon.smithi096 on 2024-05-14T03:29:16.306 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-05-14T03:29:16.425 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target → /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target. 2024-05-14T03:29:16.425 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target → /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target. 2024-05-14T03:29:16.596 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096 2024-05-14T03:29:16.596 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Failed to reset failed state of unit ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service: Unit ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service not loaded. 2024-05-14T03:29:16.687 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target.wants/ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service → /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968@.service. 2024-05-14T03:29:17.047 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:16 smithi096 systemd[1]: Starting Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:29:17.197 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-05-14T03:29:17.197 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout disabled 2024-05-14T03:29:17.205 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-05-14T03:29:17.205 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:29:17.205 INFO:teuthology.orchestra.run.smithi096.stdout:firewalld.service is not enabled 2024-05-14T03:29:17.205 INFO:teuthology.orchestra.run.smithi096.stdout:Not possible to enable service . firewalld.service is not available 2024-05-14T03:29:17.205 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mon to start... 2024-05-14T03:29:17.206 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mon... 2024-05-14T03:29:17.464 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:17 smithi096 bash[35576]: df27b9aa3136a468a5be111b2355fed4708e3b6766401f30248de2248da0a144 2024-05-14T03:29:17.464 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:17 smithi096 systemd[1]: Started Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968. 2024-05-14T03:29:17.465 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:17 smithi096 ceph-mon[35595]: mkfs 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:17.465 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:17 smithi096 ceph-mon[35595]: mon.smithi096 is new leader, mons smithi096 in quorum (ranks 0) 2024-05-14T03:29:18.330 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout cluster: 2024-05-14T03:29:18.330 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout id: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:18.330 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-05-14T03:29:18.330 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout services: 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi096 (age 0.554388s) 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout data: 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout pgs: 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:mon is available 2024-05-14T03:29:18.331 INFO:teuthology.orchestra.run.smithi096.stdout:Assimilating anything we can from ceph.conf... 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: mon.smithi096 is new leader, mons smithi096 in quorum (ranks 0) 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: monmap e1: 1 mons at {smithi096=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: fsmap 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: osdmap e1: 0 total, 0 up, 0 in 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: mgrmap e1: no daemons active 2024-05-14T03:29:18.332 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:18 smithi096 ceph-mon[35595]: from='client.? 172.21.15.96:0/2219101982' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [global] 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout fsid = 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.96:3300,v1:172.21.15.96:6789] 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-05-14T03:29:19.487 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [mgr] 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [osd] 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-05-14T03:29:19.488 INFO:teuthology.orchestra.run.smithi096.stdout:Generating new minimal ceph.conf... 2024-05-14T03:29:19.488 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:19 smithi096 ceph-mon[35595]: from='client.? 172.21.15.96:0/4023604617' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-05-14T03:29:19.489 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:19 smithi096 ceph-mon[35595]: from='client.? 172.21.15.96:0/4023604617' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-05-14T03:29:20.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:20 smithi096 ceph-mon[35595]: from='client.? 172.21.15.96:0/3021742392' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:29:20.609 INFO:teuthology.orchestra.run.smithi096.stdout:Restarting the monitor... 2024-05-14T03:29:21.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:20 smithi096 systemd[1]: Stopping Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:29:21.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:20 smithi096 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096[35591]: 2024-05-14T03:29:20.829+0000 7f10ced96700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi096 -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-05-14T03:29:21.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:20 smithi096 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096[35591]: 2024-05-14T03:29:20.829+0000 7f10ced96700 -1 mon.smithi096@0(leader) e1 *** Got Signal Terminated *** 2024-05-14T03:29:21.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:21 smithi096 bash[35847]: ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096 2024-05-14T03:29:22.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:21 smithi096 systemd[1]: ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service: Succeeded. 2024-05-14T03:29:22.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:21 smithi096 systemd[1]: Stopped Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968. 2024-05-14T03:29:22.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:21 smithi096 systemd[1]: Starting Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:29:22.310 INFO:teuthology.orchestra.run.smithi096.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-05-14T03:29:22.577 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: set uid:gid to 167:167 (ceph:ceph) 2024-05-14T03:29:22.577 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable), process ceph-mon, pid 2 2024-05-14T03:29:22.577 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: pidfile_write: ignore empty --pid-file 2024-05-14T03:29:22.577 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: load: jerasure load: lrc 2024-05-14T03:29:22.577 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: RocksDB version: 7.9.2 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Git sha 0 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Compile date 2024-05-13 17:32:21 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: DB SUMMARY 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: DB Session ID: UB2KF6D4F5IQO5H9JURH 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: CURRENT file: CURRENT 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: IDENTITY file: IDENTITY 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi096/store.db dir, Total Num: 1, files: 000008.sst 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi096/store.db: 000009.log size: 83798 ; 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.error_if_exists: 0 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.create_if_missing: 0 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.paranoid_checks: 1 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.flush_verify_memtable_count: 1 2024-05-14T03:29:22.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.env: 0x563f566ca820 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.fs: PosixFileSystem 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.info_log: 0x563f5885f3e0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_file_opening_threads: 16 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.statistics: (nil) 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.use_fsync: 0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_log_file_size: 0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.log_file_time_to_roll: 0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.keep_log_file_num: 1000 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.recycle_log_file_num: 0 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_fallocate: 1 2024-05-14T03:29:22.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_mmap_reads: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_mmap_writes: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.use_direct_reads: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.create_missing_column_families: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.db_log_dir: 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.wal_dir: 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.table_cache_numshardbits: 6 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.WAL_ttl_seconds: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.WAL_size_limit_MB: 0 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.is_fd_close_on_exec: 1 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.advise_random_on_open: 1 2024-05-14T03:29:22.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.db_write_buffer_size: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.write_buffer_manager: 0x563f57ad4140 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.use_adaptive_mutex: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.rate_limiter: (nil) 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.wal_recovery_mode: 2 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enable_thread_tracking: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enable_pipelined_write: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.unordered_write: 0 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-05-14T03:29:22.581 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.row_cache: None 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.wal_filter: None 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_ingest_behind: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.two_write_queues: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.manual_wal_flush: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.wal_compression: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.atomic_flush: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.persist_stats_to_disk: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.write_dbid_to_manifest: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.log_readahead_size: 0 2024-05-14T03:29:22.582 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.best_efforts_recovery: 0 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.allow_data_in_errors: 0 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.db_host_id: __hostname__ 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enforce_single_del_contracts: true 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_background_jobs: 2 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_background_compactions: -1 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_subcompactions: 1 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.delayed_write_rate : 16777216 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_total_wal_size: 0 2024-05-14T03:29:22.583 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.stats_dump_period_sec: 600 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.stats_persist_period_sec: 600 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_open_files: -1 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bytes_per_sync: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.wal_bytes_per_sync: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.strict_bytes_per_sync: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_readahead_size: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_background_flushes: -1 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Compression algorithms supported: 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kZSTD supported: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kXpressCompression supported: 0 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kLZ4HCCompression supported: 1 2024-05-14T03:29:22.584 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kZlibCompression supported: 1 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kSnappyCompression supported: 1 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kLZ4Compression supported: 1 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: kBZip2Compression supported: 0 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Fast CRC32 supported: Supported on x86 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: DMutex implementation: pthread_mutex_t 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi096/store.db/MANIFEST-000010 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.merge_operator: 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_filter: None 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_filter_factory: None 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.sst_partitioner_factory: None 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.memtable_factory: SkipListFactory 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.table_factory: BlockBasedTable 2024-05-14T03:29:22.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x563f5885f500) 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: cache_index_and_filter_blocks: 1 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: pin_top_level_index_and_filter: 1 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: index_type: 0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: data_block_index_type: 0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: index_shortening: 1 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: data_block_hash_table_util_ratio: 0.750000 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: checksum: 4 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: no_block_cache: 0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_cache: 0x563f57b771f0 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_cache_name: BinnedLRUCache 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_cache_options: 2024-05-14T03:29:22.586 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: capacity : 536870912 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: num_shard_bits : 4 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: strict_capacity_limit : 0 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: high_pri_pool_ratio: 0.000 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_cache_compressed: (nil) 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: persistent_cache: (nil) 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_size: 4096 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_size_deviation: 10 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_restart_interval: 16 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: index_block_restart_interval: 1 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: metadata_block_size: 4096 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: partition_filters: 0 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: use_delta_encoding: 1 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: filter_policy: bloomfilter 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: whole_key_filtering: 1 2024-05-14T03:29:22.587 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: verify_compression: 0 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: read_amp_bytes_per_bit: 0 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: format_version: 5 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: enable_index_compression: 1 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: block_align: 0 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: max_auto_readahead_size: 262144 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: prepopulate_block_cache: 0 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: initial_auto_readahead_size: 8192 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: num_file_reads_for_auto_readahead: 2 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.write_buffer_size: 33554432 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_write_buffer_number: 2 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression: NoCompression 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression: Disabled 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.prefix_extractor: nullptr 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-05-14T03:29:22.588 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.num_levels: 7 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-05-14T03:29:22.589 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.window_bits: -14 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.level: 32767 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.strategy: 0 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.enabled: false 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.target_file_size_base: 67108864 2024-05-14T03:29:22.590 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.target_file_size_multiplier: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-05-14T03:29:22.591 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.arena_block_size: 1048576 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.disable_auto_compactions: 0 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-05-14T03:29:22.592 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.table_properties_collectors: 2024-05-14T03:29:22.593 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.inplace_update_support: 0 2024-05-14T03:29:22.593 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.inplace_update_num_locks: 10000 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.memtable_huge_page_size: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.bloom_locality: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.max_successive_merges: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.optimize_filters_for_hits: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.paranoid_file_checks: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.force_consistency_checks: 1 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.report_bg_io_stats: 0 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.ttl: 2592000 2024-05-14T03:29:22.594 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.periodic_compaction_seconds: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enable_blob_files: false 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.min_blob_size: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_file_size: 268435456 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_compression_type: NoCompression 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.enable_blob_garbage_collection: false 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.blob_file_starting_level: 0 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi096/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-05-14T03:29:22.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1eb0f4cd-9e93-4884-87ef-612ecee33bdb 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657362268540, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657362269368, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 80570, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 248, "table_properties": {"data_size": 78753, "index_size": 227, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 9753, "raw_average_key_size": 47, "raw_value_size": 73173, "raw_average_value_size": 353, "num_data_blocks": 10, "num_entries": 207, "num_filter_entries": 207, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "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": 1715657362, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "1eb0f4cd-9e93-4884-87ef-612ecee33bdb", "db_session_id": "UB2KF6D4F5IQO5H9JURH", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657362269445, "job": 1, "event": "recovery_finished"} 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi096/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x563f57c14000 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: DB pointer 0x563f57c02000 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: ** DB Stats ** 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-05-14T03:29:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.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-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.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-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: ** Compaction Stats [default] ** 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.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-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: L0 2/0 80.55 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 148.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Sum 2/0 80.55 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 148.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:29:22.597 INFO:journalctl@ceph.mon.smithi096.smithi096.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 148.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: ** Compaction Stats [default] ** 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.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-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.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 148.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-05-14T03:29:22.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: AddFile(Keys): cumulative 0, interval 0 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Cumulative compaction: 0.00 GB write, 21.77 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Interval compaction: 0.00 GB write, 21.77 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.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-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Block cache BinnedLRUCache@0x563f57b771f0#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: ** File Read Latency Histogram By Level [default] ** 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: starting mon.smithi096 rank 0 at public addrs [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] at bind addrs [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi096 fsid 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???) e1 preinit fsid 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).mds e1 new map 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).mds e1 print_map 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: e1 2024-05-14T03:29:22.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: legacy client fscid: -1 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout: No filesystems configured 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 bash[35961]: 1489c10df133c64b1ff043174f25b7f8ebeadcad95d74a898a7e8c31ebd48c7c 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 systemd[1]: Started Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968. 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mon.smithi096 is new leader, mons smithi096 in quorum (ranks 0) 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: monmap e1: 1 mons at {smithi096=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: fsmap 2024-05-14T03:29:22.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: osdmap e1: 0 total, 0 up, 0 in 2024-05-14T03:29:22.601 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:22 smithi096 ceph-mon[35980]: mgrmap e1: no daemons active 2024-05-14T03:29:23.456 INFO:teuthology.orchestra.run.smithi096.stdout:Wrote config to /etc/ceph/ceph.conf 2024-05-14T03:29:23.479 INFO:teuthology.orchestra.run.smithi096.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:29:23.479 INFO:teuthology.orchestra.run.smithi096.stdout:Creating mgr... 2024-05-14T03:29:23.479 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying port 0.0.0.0:9283 ... 2024-05-14T03:29:23.480 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying port 0.0.0.0:8765 ... 2024-05-14T03:29:23.480 INFO:teuthology.orchestra.run.smithi096.stdout:Verifying port 0.0.0.0:8443 ... 2024-05-14T03:29:23.662 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mgr.smithi096.iktflt 2024-05-14T03:29:23.663 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Failed to reset failed state of unit ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mgr.smithi096.iktflt.service: Unit ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mgr.smithi096.iktflt.service not loaded. 2024-05-14T03:29:23.751 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968.target.wants/ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mgr.smithi096.iktflt.service → /etc/systemd/system/ceph-09e7892c-11a2-11ef-bc98-c7b262605968@.service. 2024-05-14T03:29:24.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:23 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2793368065' entity='client.admin' 2024-05-14T03:29:24.241 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-05-14T03:29:24.241 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout disabled 2024-05-14T03:29:24.250 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-05-14T03:29:24.250 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:29:24.250 INFO:teuthology.orchestra.run.smithi096.stdout:firewalld.service is not enabled 2024-05-14T03:29:24.251 INFO:teuthology.orchestra.run.smithi096.stdout:Not possible to enable service . firewalld.service is not available 2024-05-14T03:29:24.262 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-05-14T03:29:24.262 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout disabled 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:firewalld.service is not enabled 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mgr to start... 2024-05-14T03:29:24.267 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mgr... 2024-05-14T03:29:26.825 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:26 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2235263601' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-05-14T03:29:27.238 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:27.238 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsid": "09e7892c-11a2-11ef-bc98-c7b262605968", 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "health": { 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 0 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "smithi096" 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:27.239 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_age": 4, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "monmap": { 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-05-14T03:29:27.240 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-05-14T03:29:27.244 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "available": false, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modules": [ 2024-05-14T03:29:27.245 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "iostat", 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "nfs", 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "restful" 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modified": "2024-05-14T03:29:17.215697+0000", 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:29:27.246 INFO:teuthology.orchestra.run.smithi096.stdout:mgr not available, waiting (1/15)... 2024-05-14T03:29:30.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:29 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3742208248' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-05-14T03:29:30.390 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:30.390 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:29:30.390 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsid": "09e7892c-11a2-11ef-bc98-c7b262605968", 2024-05-14T03:29:30.390 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "health": { 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 0 2024-05-14T03:29:30.391 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "smithi096" 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_age": 7, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "monmap": { 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-05-14T03:29:30.392 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.393 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "available": false, 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modules": [ 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "iostat", 2024-05-14T03:29:30.394 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "nfs", 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "restful" 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modified": "2024-05-14T03:29:17.215697+0000", 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:29:30.395 INFO:teuthology.orchestra.run.smithi096.stdout:mgr not available, waiting (2/15)... 2024-05-14T03:29:31.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: Activating manager daemon smithi096.iktflt 2024-05-14T03:29:31.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: mgrmap e2: smithi096.iktflt(active, starting, since 0.0029353s) 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi096.iktflt", "id": "smithi096.iktflt"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: Manager daemon smithi096.iktflt is now available 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/mirror_snapshot_schedule"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/trash_purge_schedule"}]: dispatch 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:31.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:30 smithi096 ceph-mon[35980]: from='mgr.14100 172.21.15.96:0/1096913265' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:33.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:32 smithi096 ceph-mon[35980]: mgrmap e3: smithi096.iktflt(active, since 1.00726s) 2024-05-14T03:29:35.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:34 smithi096 ceph-mon[35980]: mgrmap e4: smithi096.iktflt(active, since 3s) 2024-05-14T03:29:36.635 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:36 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1275153614' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-05-14T03:29:36.857 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:36.857 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:29:36.857 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsid": "09e7892c-11a2-11ef-bc98-c7b262605968", 2024-05-14T03:29:36.857 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "health": { 2024-05-14T03:29:36.857 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 0 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "smithi096" 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "quorum_age": 14, 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "monmap": { 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "reef", 2024-05-14T03:29:36.858 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-05-14T03:29:36.859 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-05-14T03:29:36.863 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-05-14T03:29:36.864 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "available": true, 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modules": [ 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "iostat", 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "nfs", 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "restful" 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ], 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-05-14T03:29:36.865 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "modified": "2024-05-14T03:29:17.215697+0000", 2024-05-14T03:29:36.866 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "services": {} 2024-05-14T03:29:36.866 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout }, 2024-05-14T03:29:36.866 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-05-14T03:29:36.866 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:29:36.866 INFO:teuthology.orchestra.run.smithi096.stdout:mgr is available 2024-05-14T03:29:37.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:37 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1502043692' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [global] 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout fsid = 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [mgr] 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout [osd] 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-05-14T03:29:37.980 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-05-14T03:29:37.981 INFO:teuthology.orchestra.run.smithi096.stdout:Enabling cephadm module... 2024-05-14T03:29:38.964 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:38 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3413677226' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-05-14T03:29:40.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:39 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3413677226' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-05-14T03:29:40.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:39 smithi096 ceph-mon[35980]: mgrmap e5: smithi096.iktflt(active, since 7s) 2024-05-14T03:29:40.801 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:29:40.801 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-05-14T03:29:40.801 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "available": true, 2024-05-14T03:29:40.801 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "active_name": "smithi096.iktflt", 2024-05-14T03:29:40.802 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-05-14T03:29:40.802 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:29:40.802 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for the mgr to restart... 2024-05-14T03:29:40.802 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mgr epoch 5... 2024-05-14T03:29:40.803 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:40 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/790037897' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-05-14T03:29:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: Active manager daemon smithi096.iktflt restarted 2024-05-14T03:29:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: Activating manager daemon smithi096.iktflt 2024-05-14T03:29:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: osdmap e2: 0 total, 0 up, 0 in 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: mgrmap e6: smithi096.iktflt(active, starting, since 0.00591839s) 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi096.iktflt", "id": "smithi096.iktflt"}]: dispatch 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: Manager daemon smithi096.iktflt is now available 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:45.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:45 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: Found migration_current of "None". Setting to last migration. 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/mirror_snapshot_schedule"}]: dispatch 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/trash_purge_schedule"}]: dispatch 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:46 smithi096 ceph-mon[35980]: mgrmap e7: smithi096.iktflt(active, since 1.00571s) 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "initialized": true 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:mgr epoch 5 is available 2024-05-14T03:29:47.443 INFO:teuthology.orchestra.run.smithi096.stdout:Setting orchestrator backend to cephadm... 2024-05-14T03:29:47.708 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:47 smithi096 ceph-mon[35980]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-05-14T03:29:47.709 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:47 smithi096 ceph-mon[35980]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-05-14T03:29:47.709 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:47 smithi096 ceph-mon[35980]: [14/May/2024:03:29:46] ENGINE Bus STARTING 2024-05-14T03:29:47.709 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:47 smithi096 ceph-mon[35980]: [14/May/2024:03:29:46] ENGINE Serving on http://172.21.15.96:8765 2024-05-14T03:29:47.709 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:47 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:29:48.775 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:48 smithi096 ceph-mon[35980]: [14/May/2024:03:29:46] ENGINE Serving on https://172.21.15.96:7150 2024-05-14T03:29:48.775 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:48 smithi096 ceph-mon[35980]: [14/May/2024:03:29:46] ENGINE Bus STARTED 2024-05-14T03:29:48.775 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:48 smithi096 ceph-mon[35980]: mgrmap e8: smithi096.iktflt(active, since 2s) 2024-05-14T03:29:48.775 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:48 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:48.775 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:48 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:29:49.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:49 smithi096 ceph-mon[35980]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:50.097 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout value unchanged 2024-05-14T03:29:50.097 INFO:teuthology.orchestra.run.smithi096.stdout:Generating ssh key... 2024-05-14T03:29:50.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:50 smithi096 ceph-mon[35980]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:52.087 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:51 smithi096 ceph-mon[35980]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:52.087 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:51 smithi096 ceph-mon[35980]: Generating ssh key... 2024-05-14T03:29:52.087 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:51 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:52.087 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:51 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:52.754 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz/SIM0qguioYIUpF2bBFxG+LLhadSaUH77P6OiLd4BluC/7KLHIPOH4xnbRE2/MeGzIC+Y81ntwWeTuJCck3QKXPDAmv+vUZUatDe0iJH/Ic/RV/UCuHV0mrXxgBmAIKzJBZrT4BwYQltSCqQRD68n0N3UKNDtKIxO4420DvrEWq6trw6tXdJbBXr4JKpPD2vSXaWDXeX+Ol6O12lTvngpx/nbB3b3lJdnvmzU9fBaWTDpc0kQKpTT+lqghgAS/LdHJUSW43Yp9Yft3St7P1tBTSx2a876BGfEo0s57KkZmt3oi+OzYGWNstQ0D8Pwu0m6uoRBMyTkiRKEtGrRpMKAX1Gte/YYkiWX4Y9ZzwZMBuiQKGUsquiTXGVylcnw+EyJ+jbD2lVZTsnM2pBeRT3/FeRd4NnvoytUANX/pHg2TVsv+5Mta8QSDcwrK4Mx4A3bvu1I6NDDQZrfmVD135bDU/cJF0JrSkJfYDGR3zhGNk8HiGFKzt6sOfXSlTR3uk= ceph-09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:29:52.755 INFO:teuthology.orchestra.run.smithi096.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-05-14T03:29:52.755 INFO:teuthology.orchestra.run.smithi096.stdout:Adding key to root@localhost authorized_keys... 2024-05-14T03:29:52.755 INFO:teuthology.orchestra.run.smithi096.stdout:Adding host smithi096... 2024-05-14T03:29:53.076 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:52 smithi096 ceph-mon[35980]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:53.994 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:53 smithi096 ceph-mon[35980]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi096", "addr": "172.21.15.96", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:55.183 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:54 smithi096 ceph-mon[35980]: Deploying cephadm binary to smithi096 2024-05-14T03:29:56.085 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Added host 'smithi096' with addr '172.21.15.96' 2024-05-14T03:29:56.085 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying mon service with default placement... 2024-05-14T03:29:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:56 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:56 smithi096 ceph-mon[35980]: Added host smithi096 2024-05-14T03:29:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:56 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:29:58.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:57 smithi096 ceph-mon[35980]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:29:58.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:57 smithi096 ceph-mon[35980]: Saving service mon spec with placement count:5 2024-05-14T03:29:58.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:29:57 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:29:59.886 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-05-14T03:29:59.886 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying mgr service with default placement... 2024-05-14T03:30:01.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:01 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:01.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:01 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:01.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:01 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:01.762 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-05-14T03:30:01.763 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying crash service with default placement... 2024-05-14T03:30:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:02 smithi096 ceph-mon[35980]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:02 smithi096 ceph-mon[35980]: Saving service mgr spec with placement count:2 2024-05-14T03:30:03.296 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-05-14T03:30:03.297 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying ceph-exporter service with default placement... 2024-05-14T03:30:03.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:03 smithi096 ceph-mon[35980]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:03.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:03 smithi096 ceph-mon[35980]: Saving service crash spec with placement * 2024-05-14T03:30:03.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:03 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:03.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:03 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:04.645 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-05-14T03:30:04.645 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying prometheus service with default placement... 2024-05-14T03:30:04.937 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:04 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:04.937 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:04 smithi096 ceph-mon[35980]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:04.938 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:04 smithi096 ceph-mon[35980]: Saving service ceph-exporter spec with placement * 2024-05-14T03:30:04.938 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:04 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:06.754 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:06 smithi096 ceph-mon[35980]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:06.754 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:06 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:07.146 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-05-14T03:30:07.146 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying grafana service with default placement... 2024-05-14T03:30:07.808 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:07 smithi096 ceph-mon[35980]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:07.808 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:07 smithi096 ceph-mon[35980]: Saving service prometheus spec with placement count:1 2024-05-14T03:30:08.360 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-05-14T03:30:08.360 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying node-exporter service with default placement... 2024-05-14T03:30:08.614 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:08 smithi096 ceph-mon[35980]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:08.614 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:08 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:09.825 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-05-14T03:30:09.825 INFO:teuthology.orchestra.run.smithi096.stdout:Deploying alertmanager service with default placement... 2024-05-14T03:30:09.828 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:09 smithi096 ceph-mon[35980]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:09.828 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:09 smithi096 ceph-mon[35980]: Saving service grafana spec with placement count:1 2024-05-14T03:30:09.828 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:09 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:10 smithi096 ceph-mon[35980]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:10 smithi096 ceph-mon[35980]: Saving service node-exporter spec with placement * 2024-05-14T03:30:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:10 smithi096 ceph-mon[35980]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:11.172 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-05-14T03:30:11.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:11 smithi096 ceph-mon[35980]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:11.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:11 smithi096 ceph-mon[35980]: Saving service alertmanager spec with placement count:1 2024-05-14T03:30:11.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:11 smithi096 ceph-mon[35980]: from='mgr.14118 172.21.15.96:0/1569238051' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:12.768 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:12 smithi096 ceph-mon[35980]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:12.768 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:12 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2437695176' entity='client.admin' 2024-05-14T03:30:13.885 INFO:teuthology.orchestra.run.smithi096.stdout:Enabling the dashboard module... 2024-05-14T03:30:14.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3024825177' entity='client.admin' 2024-05-14T03:30:14.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:14 smithi096 ceph-mon[35980]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:15.466 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:15 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2417769470' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-05-14T03:30:16.400 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:16 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2417769470' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-05-14T03:30:16.400 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:16 smithi096 ceph-mon[35980]: mgrmap e9: smithi096.iktflt(active, since 29s) 2024-05-14T03:30:17.320 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "available": true, 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "active_name": "smithi096.iktflt", 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for the mgr to restart... 2024-05-14T03:30:17.322 INFO:teuthology.orchestra.run.smithi096.stdout:Waiting for mgr epoch 9... 2024-05-14T03:30:17.546 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:17 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3394562930' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-05-14T03:30:22.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: Active manager daemon smithi096.iktflt restarted 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: Activating manager daemon smithi096.iktflt 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: osdmap e3: 0 total, 0 up, 0 in 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: mgrmap e10: smithi096.iktflt(active, starting, since 0.00561922s) 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi096.iktflt", "id": "smithi096.iktflt"}]: dispatch 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: Manager daemon smithi096.iktflt is now available 2024-05-14T03:30:22.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:22 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:30:23.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:23 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/mirror_snapshot_schedule"}]: dispatch 2024-05-14T03:30:23.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:23 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/trash_purge_schedule"}]: dispatch 2024-05-14T03:30:23.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:23 smithi096 ceph-mon[35980]: mgrmap e11: smithi096.iktflt(active, since 1.00564s) 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout { 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout "initialized": true 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout } 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:mgr epoch 9 is available 2024-05-14T03:30:23.831 INFO:teuthology.orchestra.run.smithi096.stdout:Generating a dashboard self-signed certificate... 2024-05-14T03:30:24.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: [14/May/2024:03:30:22] ENGINE Bus STARTING 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: [14/May/2024:03:30:22] ENGINE Serving on http://172.21.15.96:8765 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: [14/May/2024:03:30:22] ENGINE Serving on https://172.21.15.96:7150 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: [14/May/2024:03:30:22] ENGINE Bus STARTED 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-05-14T03:30:24.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:24 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:25.262 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-05-14T03:30:25.262 INFO:teuthology.orchestra.run.smithi096.stdout:Creating initial admin user... 2024-05-14T03:30:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:25 smithi096 ceph-mon[35980]: mgrmap e12: smithi096.iktflt(active, since 2s) 2024-05-14T03:30:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:25 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:25 smithi096 ceph-mon[35980]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:25.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:25 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:25.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:25 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:27.232 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$e73z92TQd0ZUP4tTwoxcse5c4xmr9kEHd7cK8Db6gQcHLUtC7j5Vy", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1715657426, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-05-14T03:30:27.232 INFO:teuthology.orchestra.run.smithi096.stdout:Fetching dashboard port number... 2024-05-14T03:30:27.233 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:27 smithi096 ceph-mon[35980]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:27.233 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:27 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:28.471 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:28 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1927025210' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-05-14T03:30:28.799 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stdout 8443 2024-05-14T03:30:28.809 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-05-14T03:30:28.809 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout disabled 2024-05-14T03:30:28.817 INFO:teuthology.orchestra.run.smithi096.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-05-14T03:30:28.817 INFO:teuthology.orchestra.run.smithi096.stdout:systemctl: stdout inactive 2024-05-14T03:30:28.817 INFO:teuthology.orchestra.run.smithi096.stdout:firewalld.service is not enabled 2024-05-14T03:30:28.817 INFO:teuthology.orchestra.run.smithi096.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout:Ceph Dashboard is now available at: 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout: URL: https://smithi096.front.sepia.ceph.com:8443/ 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout: User: admin 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout: Password: l5mw9k2rgh 2024-05-14T03:30:28.819 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:28.820 INFO:teuthology.orchestra.run.smithi096.stdout:Saving cluster configuration to /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config directory 2024-05-14T03:30:28.820 INFO:teuthology.orchestra.run.smithi096.stdout:Enabling autotune for osd_memory_target 2024-05-14T03:30:29.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:29 smithi096 ceph-mon[35980]: mgrmap e13: smithi096.iktflt(active, since 6s) 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout:Or, if you are only running a single cluster on this host: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.737 INFO:teuthology.orchestra.run.smithi096.stdout:Please consider enabling telemetry to help improve Ceph: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: ceph telemetry on 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout:For more information see: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:31.738 INFO:teuthology.orchestra.run.smithi096.stdout:Bootstrap complete. 2024-05-14T03:30:31.775 INFO:tasks.cephadm:Fetching config... 2024-05-14T03:30:31.775 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:30:31.775 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-05-14T03:30:31.795 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-05-14T03:30:31.795 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:30:31.795 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-05-14T03:30:31.854 INFO:tasks.cephadm:Fetching mon keyring... 2024-05-14T03:30:31.855 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:30:31.855 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/keyring of=/dev/stdout 2024-05-14T03:30:31.922 INFO:tasks.cephadm:Fetching pub ssh key... 2024-05-14T03:30:31.922 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:30:31.923 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-05-14T03:30:31.980 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-05-14T03:30:31.981 DEBUG:teuthology.orchestra.run.smithi096:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz/SIM0qguioYIUpF2bBFxG+LLhadSaUH77P6OiLd4BluC/7KLHIPOH4xnbRE2/MeGzIC+Y81ntwWeTuJCck3QKXPDAmv+vUZUatDe0iJH/Ic/RV/UCuHV0mrXxgBmAIKzJBZrT4BwYQltSCqQRD68n0N3UKNDtKIxO4420DvrEWq6trw6tXdJbBXr4JKpPD2vSXaWDXeX+Ol6O12lTvngpx/nbB3b3lJdnvmzU9fBaWTDpc0kQKpTT+lqghgAS/LdHJUSW43Yp9Yft3St7P1tBTSx2a876BGfEo0s57KkZmt3oi+OzYGWNstQ0D8Pwu0m6uoRBMyTkiRKEtGrRpMKAX1Gte/YYkiWX4Y9ZzwZMBuiQKGUsquiTXGVylcnw+EyJ+jbD2lVZTsnM2pBeRT3/FeRd4NnvoytUANX/pHg2TVsv+5Mta8QSDcwrK4Mx4A3bvu1I6NDDQZrfmVD135bDU/cJF0JrSkJfYDGR3zhGNk8HiGFKzt6sOfXSlTR3uk= ceph-09e7892c-11a2-11ef-bc98-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-05-14T03:30:32.057 INFO:teuthology.orchestra.run.smithi096.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz/SIM0qguioYIUpF2bBFxG+LLhadSaUH77P6OiLd4BluC/7KLHIPOH4xnbRE2/MeGzIC+Y81ntwWeTuJCck3QKXPDAmv+vUZUatDe0iJH/Ic/RV/UCuHV0mrXxgBmAIKzJBZrT4BwYQltSCqQRD68n0N3UKNDtKIxO4420DvrEWq6trw6tXdJbBXr4JKpPD2vSXaWDXeX+Ol6O12lTvngpx/nbB3b3lJdnvmzU9fBaWTDpc0kQKpTT+lqghgAS/LdHJUSW43Yp9Yft3St7P1tBTSx2a876BGfEo0s57KkZmt3oi+OzYGWNstQ0D8Pwu0m6uoRBMyTkiRKEtGrRpMKAX1Gte/YYkiWX4Y9ZzwZMBuiQKGUsquiTXGVylcnw+EyJ+jbD2lVZTsnM2pBeRT3/FeRd4NnvoytUANX/pHg2TVsv+5Mta8QSDcwrK4Mx4A3bvu1I6NDDQZrfmVD135bDU/cJF0JrSkJfYDGR3zhGNk8HiGFKzt6sOfXSlTR3uk= ceph-09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:30:32.068 DEBUG:teuthology.orchestra.run.smithi137:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz/SIM0qguioYIUpF2bBFxG+LLhadSaUH77P6OiLd4BluC/7KLHIPOH4xnbRE2/MeGzIC+Y81ntwWeTuJCck3QKXPDAmv+vUZUatDe0iJH/Ic/RV/UCuHV0mrXxgBmAIKzJBZrT4BwYQltSCqQRD68n0N3UKNDtKIxO4420DvrEWq6trw6tXdJbBXr4JKpPD2vSXaWDXeX+Ol6O12lTvngpx/nbB3b3lJdnvmzU9fBaWTDpc0kQKpTT+lqghgAS/LdHJUSW43Yp9Yft3St7P1tBTSx2a876BGfEo0s57KkZmt3oi+OzYGWNstQ0D8Pwu0m6uoRBMyTkiRKEtGrRpMKAX1Gte/YYkiWX4Y9ZzwZMBuiQKGUsquiTXGVylcnw+EyJ+jbD2lVZTsnM2pBeRT3/FeRd4NnvoytUANX/pHg2TVsv+5Mta8QSDcwrK4Mx4A3bvu1I6NDDQZrfmVD135bDU/cJF0JrSkJfYDGR3zhGNk8HiGFKzt6sOfXSlTR3uk= ceph-09e7892c-11a2-11ef-bc98-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-05-14T03:30:32.115 INFO:teuthology.orchestra.run.smithi137.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCz/SIM0qguioYIUpF2bBFxG+LLhadSaUH77P6OiLd4BluC/7KLHIPOH4xnbRE2/MeGzIC+Y81ntwWeTuJCck3QKXPDAmv+vUZUatDe0iJH/Ic/RV/UCuHV0mrXxgBmAIKzJBZrT4BwYQltSCqQRD68n0N3UKNDtKIxO4420DvrEWq6trw6tXdJbBXr4JKpPD2vSXaWDXeX+Ol6O12lTvngpx/nbB3b3lJdnvmzU9fBaWTDpc0kQKpTT+lqghgAS/LdHJUSW43Yp9Yft3St7P1tBTSx2a876BGfEo0s57KkZmt3oi+OzYGWNstQ0D8Pwu0m6uoRBMyTkiRKEtGrRpMKAX1Gte/YYkiWX4Y9ZzwZMBuiQKGUsquiTXGVylcnw+EyJ+jbD2lVZTsnM2pBeRT3/FeRd4NnvoytUANX/pHg2TVsv+5Mta8QSDcwrK4Mx4A3bvu1I6NDDQZrfmVD135bDU/cJF0JrSkJfYDGR3zhGNk8HiGFKzt6sOfXSlTR3uk= ceph-09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:30:32.127 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-05-14T03:30:32.260 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:32 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1760278578' entity='client.admin' 2024-05-14T03:30:32.423 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:30:35.449 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-05-14T03:30:35.449 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-05-14T03:30:35.941 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:30:36.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:35 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/399443726' entity='client.admin' 2024-05-14T03:30:40.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi096", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi096", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:30:40.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:39 smithi096 ceph-mon[35980]: Deploying daemon ceph-exporter.smithi096 on smithi096 2024-05-14T03:30:41.336 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:41 smithi096 ceph-mon[35980]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:41.337 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:41 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:41.359 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi137 2024-05-14T03:30:41.359 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:30:41.359 DEBUG:teuthology.orchestra.run.smithi137:> dd of=/etc/ceph/ceph.conf 2024-05-14T03:30:41.381 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:30:41.381 DEBUG:teuthology.orchestra.run.smithi137:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-05-14T03:30:41.441 INFO:tasks.cephadm:Adding host smithi137 to orchestrator... 2024-05-14T03:30:41.442 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch host add smithi137 2024-05-14T03:30:41.684 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:30:43.296 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:43 smithi096 ceph-mon[35980]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:45.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:45.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi096", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi096", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: Deploying daemon crash.smithi096 on smithi096 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:44 smithi096 ceph-mon[35980]: from='client.14189 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:46.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:46 smithi096 ceph-mon[35980]: Deploying cephadm binary to smithi137 2024-05-14T03:30:46.264 INFO:teuthology.orchestra.run.smithi096.stdout:Added host 'smithi137' with addr '172.21.15.137' 2024-05-14T03:30:47.135 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch host ls --format=json 2024-05-14T03:30:47.376 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: Added host smithi137 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:47.407 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:47 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:48.531 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:48 smithi096 ceph-mon[35980]: Deploying daemon node-exporter.smithi096 on smithi096 2024-05-14T03:30:49.286 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:30:49.286 INFO:teuthology.orchestra.run.smithi096.stdout:[{"addr": "172.21.15.96", "hostname": "smithi096", "labels": [], "status": ""}, {"addr": "172.21.15.137", "hostname": "smithi137", "labels": [], "status": ""}] 2024-05-14T03:30:49.566 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:49 smithi096 ceph-mon[35980]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:50.614 INFO:tasks.cephadm:Setting crush tunables to default 2024-05-14T03:30:50.614 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd crush tunables default 2024-05-14T03:30:50.871 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:30:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:51 smithi096 ceph-mon[35980]: from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:30:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:51 smithi096 ceph-mon[35980]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:53.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:53 smithi096 ceph-mon[35980]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:53.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:53 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:53.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:53 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:53.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:53 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:53.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:53 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:54.290 INFO:teuthology.orchestra.run.smithi096.stderr:adjusted tunables profile to default 2024-05-14T03:30:54.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:54 smithi096 ceph-mon[35980]: Deploying daemon alertmanager.smithi096 on smithi096 2024-05-14T03:30:54.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:54 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3890951373' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-05-14T03:30:55.278 INFO:tasks.cephadm:Adding mon.smithi096 on smithi096 2024-05-14T03:30:55.278 INFO:tasks.cephadm:Adding mon.smithi137 on smithi137 2024-05-14T03:30:55.278 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch apply mon '2;smithi096:172.21.15.96=smithi096;smithi137:172.21.15.137=smithi137' 2024-05-14T03:30:55.525 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:30:55.587 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:30:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:55 smithi096 ceph-mon[35980]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:55 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3890951373' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-05-14T03:30:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:55 smithi096 ceph-mon[35980]: osdmap e4: 0 total, 0 up, 0 in 2024-05-14T03:30:57.218 INFO:teuthology.orchestra.run.smithi137.stdout:Scheduled mon update... 2024-05-14T03:30:57.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:57 smithi096 ceph-mon[35980]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:57.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:57 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:57.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:57 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:30:57.784 DEBUG:teuthology.orchestra.run.smithi137:mon.smithi137> sudo journalctl -f -n 0 -u ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi137.service 2024-05-14T03:30:57.786 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:30:57.786 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:30:57.816 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:-- Logs begin at Tue 2024-05-14 03:21:51 UTC. -- 2024-05-14T03:30:58.037 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:30:58.097 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:30:58.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:58 smithi096 ceph-mon[35980]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi096:172.21.15.96=smithi096;smithi137:172.21.15.137=smithi137", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:30:58.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:58 smithi096 ceph-mon[35980]: Saving service mon spec with placement smithi096:172.21.15.96=smithi096;smithi137:172.21.15.137=smithi137;count:2 2024-05-14T03:30:59.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:30:59 smithi096 ceph-mon[35980]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:30:59.805 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:30:59.805 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:30:59.807 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:00.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:00 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3773838595' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:00.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:00 smithi096 ceph-mon[35980]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:01.454 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:01.454 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:01.702 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:01.761 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:03.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: Regenerating cephadm self-signed grafana TLS certificates 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: Deploying daemon grafana.smithi096 on smithi096 2024-05-14T03:31:03.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:03.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:02 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:03.522 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:03.523 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:03.525 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:04.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:03 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2927924104' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:05.179 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:05.180 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:05.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:04 smithi096 ceph-mon[35980]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:05.433 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:05.492 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:07.218 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:07.219 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:07.221 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:07.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:07 smithi096 ceph-mon[35980]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:08 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3071081483' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:08.848 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:08.849 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:09.097 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:09.158 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:09.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:09 smithi096 ceph-mon[35980]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:10.888 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:10.889 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:10.890 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:11.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:11 smithi096 ceph-mon[35980]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:11.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:11 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2413735017' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:12.534 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:12.535 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:12.781 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:12.845 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:13.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:13 smithi096 ceph-mon[35980]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:14.666 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:14.666 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:14.669 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:15.236 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:15 smithi096 ceph-mon[35980]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:15.236 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:15 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2341787520' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:16.358 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:16.358 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:16.600 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:16.654 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:17.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:17.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:16 smithi096 ceph-mon[35980]: Deploying daemon prometheus.smithi096 on smithi096 2024-05-14T03:31:18.349 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:18.350 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:18.352 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:18.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:18 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:19.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:19 smithi096 ceph-mon[35980]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:19.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:19 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1597630097' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:19.983 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:19.984 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:20.225 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:20.289 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:21.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:21 smithi096 ceph-mon[35980]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:22.171 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:22.171 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:22.173 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:23 smithi096 ceph-mon[35980]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:23 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1708003526' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:23.823 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:23.823 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:24.072 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:24.132 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:25.500 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:25 smithi096 ceph-mon[35980]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:25.874 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:25.875 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:25.877 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:26 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1466154830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:27.482 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:27 smithi096 ceph-mon[35980]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:27.648 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:27.649 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:27.899 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:27.962 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:29.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:29 smithi096 ceph-mon[35980]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:29.713 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:29.714 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:29.716 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:30.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:30 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2986932476' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:31.245 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:31.246 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:31.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:31 smithi096 ceph-mon[35980]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:31.491 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:31.550 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:33.331 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:33.332 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:33.334 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:33.470 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:33 smithi096 ceph-mon[35980]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:31:33.470 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:33 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:33.470 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:33 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:33.470 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:33 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:33.471 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:33 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-05-14T03:31:34.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:34 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3714274859' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:34.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:34 smithi096 ceph-mon[35980]: from='mgr.14162 172.21.15.96:0/407627871' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-05-14T03:31:34.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:34 smithi096 ceph-mon[35980]: mgrmap e14: smithi096.iktflt(active, since 71s) 2024-05-14T03:31:34.963 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:34.964 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:35.209 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:35.266 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:36.987 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:36.987 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:36.989 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:37.217 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:37 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/891493830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:38.654 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:38.654 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:38.899 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:38.962 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: Active manager daemon smithi096.iktflt restarted 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: Activating manager daemon smithi096.iktflt 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: osdmap e5: 0 total, 0 up, 0 in 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: mgrmap e15: smithi096.iktflt(active, starting, since 0.00537604s) 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi096.iktflt", "id": "smithi096.iktflt"}]: dispatch 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-05-14T03:31:40.272 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-05-14T03:31:40.273 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-05-14T03:31:40.273 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: Manager daemon smithi096.iktflt is now available 2024-05-14T03:31:40.273 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:31:40.634 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:40.634 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:40.636 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:41.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:41.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:31:41.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/mirror_snapshot_schedule"}]: dispatch 2024-05-14T03:31:41.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi096.iktflt/trash_purge_schedule"}]: dispatch 2024-05-14T03:31:41.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2824061692' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:41.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:41.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:41 smithi096 ceph-mon[35980]: mgrmap e16: smithi096.iktflt(active, since 1.00518s) 2024-05-14T03:31:42.246 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:42.246 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:42.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: [14/May/2024:03:31:40] ENGINE Bus STARTING 2024-05-14T03:31:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: [14/May/2024:03:31:40] ENGINE Serving on http://172.21.15.96:8765 2024-05-14T03:31:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: [14/May/2024:03:31:40] ENGINE Serving on https://172.21.15.96:7150 2024-05-14T03:31:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: [14/May/2024:03:31:40] ENGINE Bus STARTED 2024-05-14T03:31:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:42.889 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:43.379 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /etc/ceph/ceph.conf 2024-05-14T03:31:44.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:43 smithi096 ceph-mon[35980]: mgrmap e17: smithi096.iktflt(active, since 2s) 2024-05-14T03:31:45.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:45.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:45.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:45.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:45.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi096", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:31:45.872 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:45.872 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:45.874 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1395947693' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd/host:smithi137", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: Updating smithi096:/etc/ceph/ceph.conf 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: Updating smithi137:/etc/ceph/ceph.conf 2024-05-14T03:31:46.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: Updating smithi137:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:31:46.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:46 smithi096 ceph-mon[35980]: Updating smithi096:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:31:47.732 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:47.732 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:48.429 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:31:48.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: Updating smithi096:/etc/ceph/ceph.client.admin.keyring 2024-05-14T03:31:48.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: Updating smithi137:/etc/ceph/ceph.client.admin.keyring 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: Updating smithi137:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.client.admin.keyring 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: Updating smithi096:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.client.admin.keyring 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi137", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi137", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:31:48.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:48 smithi096 ceph-mon[35980]: Deploying daemon ceph-exporter.smithi137 on smithi137 2024-05-14T03:31:50.354 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:50.354 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:50.356 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:50.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:50 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3358815496' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:52.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:52.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:52.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:52.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:52.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi137", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:31:52.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi137", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-05-14T03:31:52.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:31:52.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:51 smithi096 ceph-mon[35980]: Deploying daemon crash.smithi137 on smithi137 2024-05-14T03:31:52.124 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:52.124 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:52.359 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:31:54.709 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:54.709 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:54.710 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: Deploying daemon node-exporter.smithi137 on smithi137 2024-05-14T03:31:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:55 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/932350606' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:31:56.367 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:31:56.367 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:31:56.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:31:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:31:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:31:56.596 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:31:59.604 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:31:59.605 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:31:59.607 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:32:00.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: Deploying daemon mgr.smithi137.outbui on smithi137 2024-05-14T03:32:00.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:00 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/4083082926' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:01.304 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:32:01.304 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:32:01.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:01 smithi096 ceph-mon[35980]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:01.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:01 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:01.824 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:32:03.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: Deploying daemon mon.smithi137 on smithi137 2024-05-14T03:32:03.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:02 smithi096 ceph-mon[35980]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:04.041 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:32:04.042 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":1,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:29:14.424460Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-05-14T03:32:04.044 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 1 2024-05-14T03:32:04.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:04 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2342417115' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:05.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:05 smithi096 ceph-mon[35980]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:06.193 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-05-14T03:32:06.194 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mon dump -f json 2024-05-14T03:32:06.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 systemd[1]: Starting Ceph mon.smithi137 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:32:06.934 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi137/config 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: set uid:gid to 167:167 (ceph:ceph) 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: ceph version 18.2.2-1343-g2965081f (2965081fb1a343a09e00ceeede998525f5c6cb5e) reef (stable), process ceph-mon, pid 2 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: pidfile_write: ignore empty --pid-file 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: load: jerasure load: lrc 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: RocksDB version: 7.9.2 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Git sha 0 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Compile date 2024-05-13 17:32:21 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: DB SUMMARY 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: DB Session ID: 8P9UHF9DX776WQTG052G 2024-05-14T03:32:07.132 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: CURRENT file: CURRENT 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: IDENTITY file: IDENTITY 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi137/store.db dir, Total Num: 0, files: 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi137/store.db: 000004.log size: 511 ; 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.error_if_exists: 0 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.create_if_missing: 0 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.paranoid_checks: 1 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.flush_verify_memtable_count: 1 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.env: 0x564d92e7a820 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.fs: PosixFileSystem 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.info_log: 0x564d957a73e0 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_file_opening_threads: 16 2024-05-14T03:32:07.133 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.statistics: (nil) 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.use_fsync: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_log_file_size: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.log_file_time_to_roll: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.keep_log_file_num: 1000 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.recycle_log_file_num: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_fallocate: 1 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_mmap_reads: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_mmap_writes: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.use_direct_reads: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.create_missing_column_families: 0 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.db_log_dir: 2024-05-14T03:32:07.134 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.wal_dir: 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.table_cache_numshardbits: 6 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.WAL_ttl_seconds: 0 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.WAL_size_limit_MB: 0 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.is_fd_close_on_exec: 1 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.advise_random_on_open: 1 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.db_write_buffer_size: 0 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.write_buffer_manager: 0x564d94a1c140 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.use_adaptive_mutex: 0 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.rate_limiter: (nil) 2024-05-14T03:32:07.135 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.wal_recovery_mode: 2 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enable_thread_tracking: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enable_pipelined_write: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.unordered_write: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.row_cache: None 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.wal_filter: None 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_ingest_behind: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.two_write_queues: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.manual_wal_flush: 0 2024-05-14T03:32:07.136 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.wal_compression: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.atomic_flush: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.persist_stats_to_disk: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.write_dbid_to_manifest: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.log_readahead_size: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.best_efforts_recovery: 0 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-05-14T03:32:07.137 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.allow_data_in_errors: 0 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.db_host_id: __hostname__ 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enforce_single_del_contracts: true 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_background_jobs: 2 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_background_compactions: -1 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_subcompactions: 1 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.delayed_write_rate : 16777216 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_total_wal_size: 0 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.stats_dump_period_sec: 600 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.stats_persist_period_sec: 600 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-05-14T03:32:07.138 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_open_files: -1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bytes_per_sync: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.wal_bytes_per_sync: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.strict_bytes_per_sync: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_readahead_size: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_background_flushes: -1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Compression algorithms supported: 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kZSTD supported: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kXpressCompression supported: 0 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kLZ4HCCompression supported: 1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kZlibCompression supported: 1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kSnappyCompression supported: 1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kLZ4Compression supported: 1 2024-05-14T03:32:07.139 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: kBZip2Compression supported: 0 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Fast CRC32 supported: Supported on x86 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: DMutex implementation: pthread_mutex_t 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi137/store.db/MANIFEST-000005 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.merge_operator: 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_filter: None 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_filter_factory: None 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.sst_partitioner_factory: None 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.memtable_factory: SkipListFactory 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.table_factory: BlockBasedTable 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x564d957a7500) 2024-05-14T03:32:07.140 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: cache_index_and_filter_blocks: 1 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: pin_top_level_index_and_filter: 1 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: index_type: 0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: data_block_index_type: 0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: index_shortening: 1 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: data_block_hash_table_util_ratio: 0.750000 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: checksum: 4 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: no_block_cache: 0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_cache: 0x564d94abf1f0 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_cache_name: BinnedLRUCache 2024-05-14T03:32:07.141 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_cache_options: 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: capacity : 536870912 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: num_shard_bits : 4 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: strict_capacity_limit : 0 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: high_pri_pool_ratio: 0.000 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_cache_compressed: (nil) 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: persistent_cache: (nil) 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_size: 4096 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_size_deviation: 10 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_restart_interval: 16 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: index_block_restart_interval: 1 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: metadata_block_size: 4096 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: partition_filters: 0 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: use_delta_encoding: 1 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: filter_policy: bloomfilter 2024-05-14T03:32:07.142 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: whole_key_filtering: 1 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: verify_compression: 0 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: read_amp_bytes_per_bit: 0 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: format_version: 5 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: enable_index_compression: 1 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: block_align: 0 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: max_auto_readahead_size: 262144 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: prepopulate_block_cache: 0 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: initial_auto_readahead_size: 8192 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: num_file_reads_for_auto_readahead: 2 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.write_buffer_size: 33554432 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_write_buffer_number: 2 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression: NoCompression 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression: Disabled 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.prefix_extractor: nullptr 2024-05-14T03:32:07.143 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.num_levels: 7 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-05-14T03:32:07.144 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.window_bits: -14 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.level: 32767 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.strategy: 0 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.enabled: false 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.target_file_size_base: 67108864 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.target_file_size_multiplier: 1 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-05-14T03:32:07.145 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.arena_block_size: 1048576 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-05-14T03:32:07.146 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-05-14T03:32:07.147 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.disable_auto_compactions: 0 2024-05-14T03:32:07.147 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-05-14T03:32:07.147 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-05-14T03:32:07.147 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.table_properties_collectors: 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.inplace_update_support: 0 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.inplace_update_num_locks: 10000 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-05-14T03:32:07.148 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.memtable_huge_page_size: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.bloom_locality: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.max_successive_merges: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.optimize_filters_for_hits: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.paranoid_file_checks: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.force_consistency_checks: 1 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.report_bg_io_stats: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.ttl: 2592000 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.periodic_compaction_seconds: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enable_blob_files: false 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.min_blob_size: 0 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_file_size: 268435456 2024-05-14T03:32:07.149 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_compression_type: NoCompression 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.enable_blob_garbage_collection: false 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.blob_file_starting_level: 0 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi137/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-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 60002777-b680-4574-a832-805ed8f2aede 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657526863467, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657526864024, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1622, "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": "[]", "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": 1715657526, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "60002777-b680-4574-a832-805ed8f2aede", "db_session_id": "8P9UHF9DX776WQTG052G", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: EVENT_LOG_v1 {"time_micros": 1715657526864127, "job": 1, "event": "recovery_finished"} 2024-05-14T03:32:07.150 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi137/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x564d94b5c000 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: DB pointer 0x564d94b4a000 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: ** DB Stats ** 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-05-14T03:32:07.151 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: ** Compaction Stats [default] ** 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: L0 1/0 1.58 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Sum 1/0 1.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.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 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: ** Compaction Stats [default] ** 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.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 2.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.152 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: AddFile(Keys): cumulative 0, interval 0 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Cumulative compaction: 0.00 GB write, 0.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Interval compaction: 0.00 GB write, 0.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: Block cache BinnedLRUCache@0x564d94abf1f0#2 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-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.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-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: ** File Read Latency Histogram By Level [default] ** 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137 does not exist in monmap, will attempt to join an existing cluster 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: using public_addr v2:172.21.15.137:0/0 -> [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] 2024-05-14T03:32:07.153 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: starting mon.smithi137 rank -1 at public addrs [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] at bind addrs [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi137 fsid 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(???) e0 preinit fsid 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).mds e1 new map 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).mds e1 print_map 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: e1 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: legacy client fscid: -1 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout: No filesystems configured 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-05-14T03:32:07.154 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:07.155 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: Deploying daemon mgr.smithi137.outbui on smithi137 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/4083082926' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: Deploying daemon mon.smithi137 on smithi137 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:07.156 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/2342417115' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:07.157 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:07.157 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:07.157 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 ceph-mon[46839]: mon.smithi137@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-05-14T03:32:07.157 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 bash[46793]: cc675accbfd13dd42fea4ee0edd31174e703efc0c5ab8d159ba75663fdca9cee 2024-05-14T03:32:07.157 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:06 smithi137 systemd[1]: Started Ceph mon.smithi137 for 09e7892c-11a2-11ef-bc98-c7b262605968. 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: mon.smithi096 calling monitor election 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi137.outbui/crt"}]: dispatch 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: mon.smithi137 calling monitor election 2024-05-14T03:32:12.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: mon.smithi096 is new leader, mons smithi096,smithi137 in quorum (ranks 0,1) 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: monmap e2: 2 mons at {smithi096=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0],smithi137=[v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: fsmap 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: osdmap e5: 0 total, 0 up, 0 in 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: mgrmap e17: smithi096.iktflt(active, since 31s) 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: overall HEALTH_OK 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: Standby manager daemon smithi137.outbui started 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi137.outbui/key"}]: dispatch 2024-05-14T03:32:12.348 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-05-14T03:32:12.348 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.348 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.348 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.348 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.419 INFO:teuthology.orchestra.run.smithi137.stdout: 2024-05-14T03:32:12.419 INFO:teuthology.orchestra.run.smithi137.stdout:{"epoch":2,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","modified":"2024-05-14T03:32:06.892949Z","created":"2024-05-14T03:29:14.424460Z","min_mon_release":18,"min_mon_release_name":"reef","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef"],"optional":[]},"mons":[{"rank":0,"name":"smithi096","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:3300","nonce":0},{"type":"v1","addr":"172.21.15.96:6789","nonce":0}]},"addr":"172.21.15.96:6789/0","public_addr":"172.21.15.96:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi137","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:3300","nonce":0},{"type":"v1","addr":"172.21.15.137:6789","nonce":0}]},"addr":"172.21.15.137:6789/0","public_addr":"172.21.15.137:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-05-14T03:32:12.421 INFO:teuthology.orchestra.run.smithi137.stderr:dumped monmap epoch 2 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: mon.smithi096 calling monitor election 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi137.outbui/crt"}]: dispatch 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: mon.smithi137 calling monitor election 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: mon.smithi096 is new leader, mons smithi096,smithi137 in quorum (ranks 0,1) 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: monmap e2: 2 mons at {smithi096=[v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0],smithi137=[v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: fsmap 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: osdmap e5: 0 total, 0 up, 0 in 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: mgrmap e17: smithi096.iktflt(active, since 31s) 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: overall HEALTH_OK 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: Standby manager daemon smithi137.outbui started 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-05-14T03:32:12.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi137.outbui/key"}]: dispatch 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.? 172.21.15.137:0/1186614209' entity='mgr.smithi137.outbui' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:12.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: mgrmap e18: smithi096.iktflt(active, since 31s), standbys: smithi137.outbui 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi137.outbui", "id": "smithi137.outbui"}]: dispatch 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3768309336' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:13.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:13.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: mgrmap e18: smithi096.iktflt(active, since 31s), standbys: smithi137.outbui 2024-05-14T03:32:13.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr metadata", "who": "smithi137.outbui", "id": "smithi137.outbui"}]: dispatch 2024-05-14T03:32:13.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:32:13.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:13.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3768309336' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-05-14T03:32:13.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:32:13.760 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-05-14T03:32:13.760 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph config generate-minimal-conf 2024-05-14T03:32:13.995 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:15.468 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.469 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:15.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:16.303 INFO:teuthology.orchestra.run.smithi096.stdout:# minimal ceph.conf for 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:32:16.303 INFO:teuthology.orchestra.run.smithi096.stdout:[global] 2024-05-14T03:32:16.303 INFO:teuthology.orchestra.run.smithi096.stdout: fsid = 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:32:16.303 INFO:teuthology.orchestra.run.smithi096.stdout: mon_host = [v2:172.21.15.96:3300/0,v1:172.21.15.96:6789/0] [v2:172.21.15.137:3300/0,v1:172.21.15.137:6789/0] 2024-05-14T03:32:16.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Updating smithi096:/etc/ceph/ceph.conf 2024-05-14T03:32:16.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Updating smithi137:/etc/ceph/ceph.conf 2024-05-14T03:32:16.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Updating smithi137:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:32:16.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Updating smithi096:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Reconfiguring mon.smithi096 (unknown last config time)... 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:16.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:16 smithi096 ceph-mon[35980]: Reconfiguring daemon mon.smithi096 on smithi096 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Updating smithi096:/etc/ceph/ceph.conf 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Updating smithi137:/etc/ceph/ceph.conf 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Updating smithi137:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Updating smithi096:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/config/ceph.conf 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Reconfiguring mon.smithi096 (unknown last config time)... 2024-05-14T03:32:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:16.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-05-14T03:32:16.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:16.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:16 smithi137 ceph-mon[46839]: Reconfiguring daemon mon.smithi096 on smithi096 2024-05-14T03:32:17.242 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-05-14T03:32:17.242 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:32:17.242 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.conf 2024-05-14T03:32:17.273 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:32:17.273 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-05-14T03:32:17.341 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:32:17.342 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/ceph/ceph.conf 2024-05-14T03:32:17.379 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:32:17.379 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-05-14T03:32:17.451 INFO:tasks.cephadm:Deploying OSDs... 2024-05-14T03:32:17.451 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:32:17.451 DEBUG:teuthology.orchestra.run.smithi096:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:32:17.460 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:17 smithi096 ceph-mon[35980]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:17.460 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:17 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3755064930' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:17.469 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-14T03:32:17.469 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/nvme1n1 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/nvme1n1 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 195684 Links: 1 Device type: 103,1 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:30:36.348276917 +0000 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:28:29.679099528 +0000 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:28:29.679099528 +0000 2024-05-14T03:32:17.527 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:32:17.527 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-05-14T03:32:17.594 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:32:17.594 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:32:17.594 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000278315 s, 1.8 MB/s 2024-05-14T03:32:17.595 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-05-14T03:32:17.654 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/nvme2n1 2024-05-14T03:32:17.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:17 smithi137 ceph-mon[46839]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:17.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:17 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3755064930' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/nvme2n1 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 195052 Links: 1 Device type: 103,2 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:30:36.360276650 +0000 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:28:29.823096321 +0000 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:28:29.823096321 +0000 2024-05-14T03:32:17.712 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:32:17.713 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-05-14T03:32:17.779 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:32:17.779 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:32:17.780 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000286067 s, 1.8 MB/s 2024-05-14T03:32:17.780 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-05-14T03:32:17.840 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/nvme3n1 2024-05-14T03:32:17.897 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/nvme3n1 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 195178 Links: 1 Device type: 103,3 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:30:36.370276427 +0000 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:28:29.969093068 +0000 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:28:29.969093068 +0000 2024-05-14T03:32:17.898 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:32:17.898 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-05-14T03:32:17.963 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:32:17.964 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:32:17.964 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.000189802 s, 2.7 MB/s 2024-05-14T03:32:17.965 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-05-14T03:32:18.024 DEBUG:teuthology.orchestra.run.smithi096:> stat /dev/nvme4n1 2024-05-14T03:32:18.082 INFO:teuthology.orchestra.run.smithi096.stdout: File: /dev/nvme4n1 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Device: 6h/6d Inode: 195206 Links: 1 Device type: 103,4 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Access: 2024-05-14 03:30:36.381276182 +0000 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Modify: 2024-05-14 03:28:30.113089860 +0000 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout:Change: 2024-05-14 03:28:30.113089860 +0000 2024-05-14T03:32:18.083 INFO:teuthology.orchestra.run.smithi096.stdout: Birth: - 2024-05-14T03:32:18.083 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-05-14T03:32:18.150 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records in 2024-05-14T03:32:18.150 INFO:teuthology.orchestra.run.smithi096.stderr:1+0 records out 2024-05-14T03:32:18.150 INFO:teuthology.orchestra.run.smithi096.stderr:512 bytes copied, 0.00024932 s, 2.1 MB/s 2024-05-14T03:32:18.151 DEBUG:teuthology.orchestra.run.smithi096:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-05-14T03:32:18.210 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:32:18.210 DEBUG:teuthology.orchestra.run.smithi137:> dd if=/scratch_devs of=/dev/stdout 2024-05-14T03:32:18.232 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-05-14T03:32:18.232 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/nvme1n1 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/nvme1n1 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 188951 Links: 1 Device type: 103,1 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:31:44.465089150 +0000 2024-05-14T03:32:18.294 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:28:31.315440653 +0000 2024-05-14T03:32:18.295 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:28:31.315440653 +0000 2024-05-14T03:32:18.295 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:32:18.295 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-05-14T03:32:18.366 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:32:18.366 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:32:18.366 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000303122 s, 1.7 MB/s 2024-05-14T03:32:18.371 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-05-14T03:32:18.433 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/nvme2n1 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/nvme2n1 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 194856 Links: 1 Device type: 103,2 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:31:44.476088959 +0000 2024-05-14T03:32:18.493 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:28:31.459438156 +0000 2024-05-14T03:32:18.494 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:28:31.459438156 +0000 2024-05-14T03:32:18.494 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:32:18.494 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-05-14T03:32:18.562 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:32:18.562 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:32:18.563 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000254896 s, 2.0 MB/s 2024-05-14T03:32:18.564 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-05-14T03:32:18.624 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/nvme3n1 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/nvme3n1 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 189034 Links: 1 Device type: 103,3 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:31:44.485088803 +0000 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:28:31.604435641 +0000 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:28:31.604435641 +0000 2024-05-14T03:32:18.683 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:32:18.684 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-05-14T03:32:18.750 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:32:18.750 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:32:18.750 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000252261 s, 2.0 MB/s 2024-05-14T03:32:18.751 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-05-14T03:32:18.812 DEBUG:teuthology.orchestra.run.smithi137:> stat /dev/nvme4n1 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout: File: /dev/nvme4n1 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout:Device: 6h/6d Inode: 189065 Links: 1 Device type: 103,4 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout:Context: system_u:object_r:nvme_device_t:s0 2024-05-14T03:32:18.871 INFO:teuthology.orchestra.run.smithi137.stdout:Access: 2024-05-14 03:31:44.495088629 +0000 2024-05-14T03:32:18.872 INFO:teuthology.orchestra.run.smithi137.stdout:Modify: 2024-05-14 03:28:31.749433126 +0000 2024-05-14T03:32:18.872 INFO:teuthology.orchestra.run.smithi137.stdout:Change: 2024-05-14 03:28:31.749433126 +0000 2024-05-14T03:32:18.872 INFO:teuthology.orchestra.run.smithi137.stdout: Birth: - 2024-05-14T03:32:18.872 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-05-14T03:32:18.938 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records in 2024-05-14T03:32:18.938 INFO:teuthology.orchestra.run.smithi137.stderr:1+0 records out 2024-05-14T03:32:18.938 INFO:teuthology.orchestra.run.smithi137.stderr:512 bytes copied, 0.000255315 s, 2.0 MB/s 2024-05-14T03:32:18.939 DEBUG:teuthology.orchestra.run.smithi137:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-05-14T03:32:19.001 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-05-14T03:32:19.065 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:19.065 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:19.065 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: Reconfiguring mgr.smithi096.iktflt (unknown last config time)... 2024-05-14T03:32:19.066 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi096.iktflt", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:19.066 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:19.066 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:19.066 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: Reconfiguring daemon mgr.smithi096.iktflt on smithi096 2024-05-14T03:32:19.066 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:18 smithi137 ceph-mon[46839]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: Reconfiguring mgr.smithi096.iktflt (unknown last config time)... 2024-05-14T03:32:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi096.iktflt", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: Reconfiguring daemon mgr.smithi096.iktflt on smithi096 2024-05-14T03:32:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:18 smithi096 ceph-mon[35980]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:19.253 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi137/config 2024-05-14T03:32:20.464 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:20.464 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:20.465 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: Reconfiguring ceph-exporter.smithi096 (monmap changed)... 2024-05-14T03:32:20.465 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi096", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:32:20.465 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:20.465 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:20 smithi137 ceph-mon[46839]: Reconfiguring daemon ceph-exporter.smithi096 on smithi096 2024-05-14T03:32:20.682 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:20.682 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:20.683 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: Reconfiguring ceph-exporter.smithi096 (monmap changed)... 2024-05-14T03:32:20.683 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi096", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:32:20.683 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:20.683 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:20 smithi096 ceph-mon[35980]: Reconfiguring daemon ceph-exporter.smithi096 on smithi096 2024-05-14T03:32:20.935 INFO:teuthology.orchestra.run.smithi137.stdout:Scheduled osd.all-available-devices update... 2024-05-14T03:32:21.537 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-05-14T03:32:21.538 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:21.566 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:21.567 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:21.567 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:21.567 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi096", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:32:21.567 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:21.567 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:21 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi096", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:32:21.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:21.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:21 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:22.192 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: Reconfiguring crash.smithi096 (monmap changed)... 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: Reconfiguring daemon crash.smithi096 on smithi096 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: Marking host: smithi096 for OSDSpec preview refresh. 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: Marking host: smithi137 for OSDSpec preview refresh. 2024-05-14T03:32:22.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: Saving service osd.all-available-devices spec with placement * 2024-05-14T03:32:22.452 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:22.452 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: Reconfiguring crash.smithi096 (monmap changed)... 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: Reconfiguring daemon crash.smithi096 on smithi096 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: Marking host: smithi096 for OSDSpec preview refresh. 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: Marking host: smithi137 for OSDSpec preview refresh. 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: Saving service osd.all-available-devices spec with placement * 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:22.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:23 smithi096 ceph-mon[35980]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:23.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:23 smithi096 ceph-mon[35980]: Reconfiguring alertmanager.smithi096 (dependencies changed)... 2024-05-14T03:32:23.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:23 smithi096 ceph-mon[35980]: Reconfiguring daemon alertmanager.smithi096 on smithi096 2024-05-14T03:32:23.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:23 smithi137 ceph-mon[46839]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:23.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:23 smithi137 ceph-mon[46839]: Reconfiguring alertmanager.smithi096 (dependencies changed)... 2024-05-14T03:32:23.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:23 smithi137 ceph-mon[46839]: Reconfiguring daemon alertmanager.smithi096 on smithi096 2024-05-14T03:32:24.462 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:25.422 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:25 smithi137 ceph-mon[46839]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:25 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3235479082' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:25.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:25 smithi096 ceph-mon[35980]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:25.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:25 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3235479082' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:25.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:26.423 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:27.342 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:27.570 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:27 smithi096 ceph-mon[35980]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:27.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:27 smithi137 ceph-mon[46839]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:29.627 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:29 smithi096 ceph-mon[35980]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:29 smithi137 ceph-mon[46839]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:30.097 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:30.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:30 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3070274623' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:30.729 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:30 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3070274623' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:31.365 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:31 smithi096 ceph-mon[35980]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:31 smithi137 ceph-mon[46839]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:32.366 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:32.643 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:32 smithi096 ceph-mon[35980]: Reconfiguring grafana.smithi096 (dependencies changed)... 2024-05-14T03:32:32.643 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:32 smithi096 ceph-mon[35980]: Reconfiguring daemon grafana.smithi096 on smithi096 2024-05-14T03:32:32.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:32 smithi137 ceph-mon[46839]: Reconfiguring grafana.smithi096 (dependencies changed)... 2024-05-14T03:32:32.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:32 smithi137 ceph-mon[46839]: Reconfiguring daemon grafana.smithi096 on smithi096 2024-05-14T03:32:33.351 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:33.645 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:33 smithi096 ceph-mon[35980]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:33 smithi137 ceph-mon[46839]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:35.579 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:35 smithi096 ceph-mon[35980]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:35 smithi137 ceph-mon[46839]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:36.242 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:36.534 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:36 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1220271086' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:36.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:36 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1220271086' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:37.206 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:37.521 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:37 smithi096 ceph-mon[35980]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:37 smithi137 ceph-mon[46839]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:38.207 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:39.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:39.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:39.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:38 smithi096 ceph-mon[35980]: Reconfiguring prometheus.smithi096 (dependencies changed)... 2024-05-14T03:32:39.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:38 smithi096 ceph-mon[35980]: Reconfiguring daemon prometheus.smithi096 on smithi096 2024-05-14T03:32:39.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:38 smithi096 ceph-mon[35980]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:39.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:39.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:39.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:38 smithi137 ceph-mon[46839]: Reconfiguring prometheus.smithi096 (dependencies changed)... 2024-05-14T03:32:39.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:38 smithi137 ceph-mon[46839]: Reconfiguring daemon prometheus.smithi096 on smithi096 2024-05-14T03:32:39.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:38 smithi137 ceph-mon[46839]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:39.696 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:40.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:40.501 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:41.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:41 smithi096 ceph-mon[35980]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:41 smithi137 ceph-mon[46839]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:43.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:43 smithi096 ceph-mon[35980]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:43.474 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:43 smithi137 ceph-mon[46839]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:44.585 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:44 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/114875148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:44.610 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:44 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/114875148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:45.507 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:45 smithi137 ceph-mon[46839]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:45.508 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:45.508 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:45 smithi096 ceph-mon[35980]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:45.611 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:45.838 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:46.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:46 smithi096 ceph-mon[35980]: Reconfiguring ceph-exporter.smithi137 (monmap changed)... 2024-05-14T03:32:46.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi137", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:32:46.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:46 smithi096 ceph-mon[35980]: Reconfiguring daemon ceph-exporter.smithi137 on smithi137 2024-05-14T03:32:46.539 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:46 smithi137 ceph-mon[46839]: Reconfiguring ceph-exporter.smithi137 (monmap changed)... 2024-05-14T03:32:46.539 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi137", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]: dispatch 2024-05-14T03:32:46.539 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:46.539 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:46 smithi137 ceph-mon[46839]: Reconfiguring daemon ceph-exporter.smithi137 on smithi137 2024-05-14T03:32:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:47 smithi137 ceph-mon[46839]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi137", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:32:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:47.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:47 smithi096 ceph-mon[35980]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:47.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:47.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:47.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi137", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-05-14T03:32:47.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:47.682 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: Reconfiguring crash.smithi137 (monmap changed)... 2024-05-14T03:32:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: Reconfiguring daemon crash.smithi137 on smithi137 2024-05-14T03:32:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3543085930' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:48.434 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: Reconfiguring crash.smithi137 (monmap changed)... 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: Reconfiguring daemon crash.smithi137 on smithi137 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3543085930' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi137.outbui", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mgr services"}]: dispatch 2024-05-14T03:32:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:49.435 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: Reconfiguring mgr.smithi137.outbui (monmap changed)... 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: Reconfiguring daemon mgr.smithi137.outbui on smithi137 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-05-14T03:32:49.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:49.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: Reconfiguring mgr.smithi137.outbui (monmap changed)... 2024-05-14T03:32:49.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: Reconfiguring daemon mgr.smithi137.outbui on smithi137 2024-05-14T03:32:49.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:49.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:49.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:49.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-05-14T03:32:49.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-05-14T03:32:49.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:49.672 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:50.514 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:50 smithi137 ceph-mon[46839]: Reconfiguring mon.smithi137 (monmap changed)... 2024-05-14T03:32:50.514 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:50 smithi137 ceph-mon[46839]: Reconfiguring daemon mon.smithi137 on smithi137 2024-05-14T03:32:50.524 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:50 smithi096 ceph-mon[35980]: Reconfiguring mon.smithi137 (monmap changed)... 2024-05-14T03:32:50.525 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:50 smithi096 ceph-mon[35980]: Reconfiguring daemon mon.smithi137 on smithi137 2024-05-14T03:32:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi096.front.sepia.ceph.com:9093"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi096.front.sepia.ceph.com:9093"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi096.front.sepia.ceph.com:3000"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi096.front.sepia.ceph.com:9095"}]: dispatch 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:32:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi096.front.sepia.ceph.com:9093"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi096.front.sepia.ceph.com:9093"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi096.front.sepia.ceph.com:3000"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi096.front.sepia.ceph.com:9095"}]: dispatch 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:51.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:32:51.731 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi096.front.sepia.ceph.com:3000"}]: dispatch 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi096.front.sepia.ceph.com:9095"}]: dispatch 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2699023736' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:52.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:52 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:52.879 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi096.front.sepia.ceph.com:3000"}]: dispatch 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi096.front.sepia.ceph.com:9095"}]: dispatch 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2699023736' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:52.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:52 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:53.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:53 smithi096 ceph-mon[35980]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:53.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:53 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:53.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:53 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:53.881 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:53.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:53 smithi137 ceph-mon[46839]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:53.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:53 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:53.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:53 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:54.547 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:32:55.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:55 smithi096 ceph-mon[35980]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:55.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:55.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:55 smithi137 ceph-mon[46839]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:55.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:32:57.753 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:32:57.778 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:57 smithi096 ceph-mon[35980]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:57.778 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:57 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:57.778 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:57 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:57.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:57 smithi137 ceph-mon[46839]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:57.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:57 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:57.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:57 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:58.489 INFO:teuthology.orchestra.run.smithi096.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-05-14T03:32:58.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:58.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:58.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3540376972' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:32:58 smithi096 ceph-mon[35980]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3540376972' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:32:59.115 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:32:58 smithi137 ceph-mon[46839]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:32:59.491 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:32:59.795 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2592342486' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]: dispatch 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]: dispatch 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]': finished 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: osdmap e6: 1 total, 0 up, 1 in 2024-05-14T03:33:01.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:01 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:01.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:01.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/2592342486' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]: dispatch 2024-05-14T03:33:01.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]: dispatch 2024-05-14T03:33:01.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "092de1d4-1f64-4b84-94ae-49f512a0d01d"}]': finished 2024-05-14T03:33:01.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: osdmap e6: 1 total, 0 up, 1 in 2024-05-14T03:33:01.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:01 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1840688461' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "251b0c55-939a-4853-89d2-f764073069b9"}]: dispatch 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1840688461' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "251b0c55-939a-4853-89d2-f764073069b9"}]': finished 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: osdmap e7: 2 total, 0 up, 2 in 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:02.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:02 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2482013126' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1840688461' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "251b0c55-939a-4853-89d2-f764073069b9"}]: dispatch 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1840688461' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "251b0c55-939a-4853-89d2-f764073069b9"}]': finished 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: osdmap e7: 2 total, 0 up, 2 in 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:02 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/2482013126' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:02.716 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:03.433 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1715657581,"num_remapped_pgs":0} 2024-05-14T03:33:03.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:03 smithi096 ceph-mon[35980]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:03.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:03 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3851721968' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:03.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:03 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/162884725' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:03 smithi137 ceph-mon[46839]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:03 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3851721968' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:03 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/162884725' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:04.435 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:04.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1436720541' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]: dispatch 2024-05-14T03:33:04.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]: dispatch 2024-05-14T03:33:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]': finished 2024-05-14T03:33:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: osdmap e8: 3 total, 0 up, 3 in 2024-05-14T03:33:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:04.662 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/1436720541' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]: dispatch 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]: dispatch 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f468f024-2170-420f-91e6-27a96dee810f"}]': finished 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: osdmap e8: 3 total, 0 up, 3 in 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:04.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:05.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:05 smithi096 ceph-mon[35980]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:05 smithi137 ceph-mon[46839]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:06.514 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2928093987' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:06.514 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3766702826' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "75dc9473-026f-4ff5-99ed-f878f7c8172a"}]: dispatch 2024-05-14T03:33:06.514 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3766702826' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "75dc9473-026f-4ff5-99ed-f878f7c8172a"}]': finished 2024-05-14T03:33:06.515 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: osdmap e9: 4 total, 0 up, 4 in 2024-05-14T03:33:06.515 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:06.515 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:06.515 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:06.515 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/2928093987' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3766702826' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "75dc9473-026f-4ff5-99ed-f878f7c8172a"}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3766702826' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "75dc9473-026f-4ff5-99ed-f878f7c8172a"}]': finished 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: osdmap e9: 4 total, 0 up, 4 in 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:07.047 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:07.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:07 smithi096 ceph-mon[35980]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:07.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:07 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2190268329' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:07.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:07 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1717321749' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:07 smithi137 ceph-mon[46839]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:07 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2190268329' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:07 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1717321749' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:07.750 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1715657585,"num_remapped_pgs":0} 2024-05-14T03:33:08.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3836218124' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]: dispatch 2024-05-14T03:33:08.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]: dispatch 2024-05-14T03:33:08.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]': finished 2024-05-14T03:33:08.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: osdmap e10: 5 total, 0 up, 5 in 2024-05-14T03:33:08.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:08.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:08.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:08.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:08.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:08 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:08.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3836218124' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8af303f5-6536-4a38-aefd-490cd7e3bf75"}]': finished 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: osdmap e10: 5 total, 0 up, 5 in 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:08.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:08 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:08.750 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:08.984 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:09.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:09 smithi096 ceph-mon[35980]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:09.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:09 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/2240466936' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:09 smithi137 ceph-mon[46839]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:09 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/2240466936' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/455739311' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "34528204-8cc5-428b-8a9f-8e192b3d41f2"}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/455739311' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "34528204-8cc5-428b-8a9f-8e192b3d41f2"}]': finished 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: osdmap e11: 6 total, 0 up, 6 in 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:10.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:10.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/455739311' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "34528204-8cc5-428b-8a9f-8e192b3d41f2"}]: dispatch 2024-05-14T03:33:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/455739311' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "34528204-8cc5-428b-8a9f-8e192b3d41f2"}]': finished 2024-05-14T03:33:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: osdmap e11: 6 total, 0 up, 6 in 2024-05-14T03:33:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:10.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:10.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:10.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:10.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:10.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:11.244 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:11.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:11 smithi096 ceph-mon[35980]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:11.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:11 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3554861973' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:11 smithi137 ceph-mon[46839]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:11 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3554861973' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:12.009 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1715657589,"num_remapped_pgs":0} 2024-05-14T03:33:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/399545105' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/1544814177' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]: dispatch 2024-05-14T03:33:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]': finished 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: osdmap e12: 7 total, 0 up, 7 in 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:12.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:12.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/399545105' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:12.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1544814177' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]: dispatch 2024-05-14T03:33:12.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]: dispatch 2024-05-14T03:33:12.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e6a248f2-8bb9-41ff-958d-657c47749bf6"}]': finished 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: osdmap e12: 7 total, 0 up, 7 in 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:13.011 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:13.236 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:13 smithi137 ceph-mon[46839]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:13 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/1448932245' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:13.712 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:13 smithi096 ceph-mon[35980]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:13.712 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:13 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/1448932245' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/201894996' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525e8a84-c60a-4b9b-9e70-939cc7c6e694"}]: dispatch 2024-05-14T03:33:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/201894996' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "525e8a84-c60a-4b9b-9e70-939cc7c6e694"}]': finished 2024-05-14T03:33:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: osdmap e13: 8 total, 0 up, 8 in 2024-05-14T03:33:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:14.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:14 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/201894996' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "525e8a84-c60a-4b9b-9e70-939cc7c6e694"}]: dispatch 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/201894996' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "525e8a84-c60a-4b9b-9e70-939cc7c6e694"}]': finished 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: osdmap e13: 8 total, 0 up, 8 in 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:14.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:14.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:14.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:14.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:14.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:14 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:15.335 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:15 smithi137 ceph-mon[46839]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:15 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/276856267' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:15.730 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:15 smithi096 ceph-mon[35980]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:15.730 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:15 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/276856267' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:16.054 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:16.682 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:16 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/275313821' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:16.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:16 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/275313821' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-05-14T03:33:17.055 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:17.283 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:17.614 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:17 smithi096 ceph-mon[35980]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:17.625 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:17 smithi137 ceph-mon[46839]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:19.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:19 smithi137 ceph-mon[46839]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:19.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:19 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-05-14T03:33:19.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:19 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:19.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:19 smithi096 ceph-mon[35980]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:19.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:19 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-05-14T03:33:19.578 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:19 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:20.046 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:20.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:20 smithi137 ceph-mon[46839]: Deploying daemon osd.0 on smithi137 2024-05-14T03:33:20.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:20 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2889758668' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:20 smithi096 ceph-mon[35980]: Deploying daemon osd.0 on smithi137 2024-05-14T03:33:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:20 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2889758668' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:21.492 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:21 smithi096 ceph-mon[35980]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:21.512 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:21 smithi137 ceph-mon[46839]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:22.514 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:22.972 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:23.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:23 smithi137 ceph-mon[46839]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:23.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:23 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-05-14T03:33:23.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:23 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:23 smithi096 ceph-mon[35980]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:23 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-05-14T03:33:23.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:23 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:24.495 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:24 smithi096 ceph-mon[35980]: Deploying daemon osd.1 on smithi096 2024-05-14T03:33:24.495 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:24 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:24.495 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:24 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:24.495 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:24 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-05-14T03:33:24.495 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:24 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:24.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:24 smithi137 ceph-mon[46839]: Deploying daemon osd.1 on smithi096 2024-05-14T03:33:24.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:24 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:24.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:24 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:24.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:24 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-05-14T03:33:24.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:24 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:24.911 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:25.633 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:25 smithi137 ceph-mon[46839]: Deploying daemon osd.2 on smithi137 2024-05-14T03:33:25.633 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:25 smithi137 ceph-mon[46839]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:25.633 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:25 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/258425284' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:25.633 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:25.640 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:25 smithi096 ceph-mon[35980]: Deploying daemon osd.2 on smithi137 2024-05-14T03:33:25.641 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:25 smithi096 ceph-mon[35980]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:25.641 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:25 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/258425284' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:25.641 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:26.413 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:27.414 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:27.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:27 smithi137 ceph-mon[46839]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:27.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:27 smithi137 ceph-mon[46839]: from='osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-05-14T03:33:27.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:27 smithi137 ceph-mon[46839]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-05-14T03:33:27.718 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:27 smithi096 ceph-mon[35980]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:27.719 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:27 smithi096 ceph-mon[35980]: from='osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-05-14T03:33:27.719 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:27 smithi096 ceph-mon[35980]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-05-14T03:33:27.821 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:28.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-05-14T03:33:28.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: osdmap e14: 8 total, 0 up, 8 in 2024-05-14T03:33:28.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:28.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:28.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:28.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:28.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-05-14T03:33:28.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: osdmap e14: 8 total, 0 up, 8 in 2024-05-14T03:33:28.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:28.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:28.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:28.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: osdmap e15: 8 total, 0 up, 8 in 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:29.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-05-14T03:33:29.597 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: osdmap e15: 8 total, 0 up, 8 in 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:29.656 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-05-14T03:33:29.657 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:29.717 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:30.588 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:30.588 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:30.588 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: Deploying daemon osd.4 on smithi137 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691] boot 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: osdmap e16: 8 total, 1 up, 8 in 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:30.589 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:30 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/896003086' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: Deploying daemon osd.4 on smithi137 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: osd.0 [v2:172.21.15.137:6800/3167801691,v1:172.21.15.137:6801/3167801691] boot 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: osdmap e16: 8 total, 1 up, 8 in 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:30.721 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:30.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:30.722 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:30 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/896003086' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:30.780 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1715657609,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: pgmap v59: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: osdmap e17: 8 total, 1 up, 8 in 2024-05-14T03:33:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:31.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:31.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:31.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:31.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:31 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:31.625 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: pgmap v59: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: osdmap e17: 8 total, 1 up, 8 in 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:31.626 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:31 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:31.782 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:32.130 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: Deploying daemon osd.3 on smithi096 2024-05-14T03:33:33.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:33.436 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-05-14T03:33:33.436 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:33 smithi096 ceph-mon[35980]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-05-14T03:33:33.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:33.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:33.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-05-14T03:33:33.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:33.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: Deploying daemon osd.3 on smithi096 2024-05-14T03:33:33.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: pgmap v61: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:33.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-05-14T03:33:33.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:33 smithi137 ceph-mon[46839]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: osdmap e18: 8 total, 1 up, 8 in 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:34.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:34.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:34 smithi096 ceph-mon[35980]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: osdmap e18: 8 total, 1 up, 8 in 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:34.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:34 smithi137 ceph-mon[46839]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:35.269 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: osdmap e19: 8 total, 1 up, 8 in 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='osd.2 ' entity='osd.2' 2024-05-14T03:33:35.270 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:35.271 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:35.271 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-05-14T03:33:35.271 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:35.361 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:35.453 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:35.453 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: osdmap e19: 8 total, 1 up, 8 in 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: pgmap v64: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='osd.2 ' entity='osd.2' 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-05-14T03:33:35.454 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: Deploying daemon osd.6 on smithi137 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/4014565460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947] boot 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-05-14T03:33:36.326 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: osdmap e20: 8 total, 2 up, 8 in 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:36.327 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:36 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:36.344 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":19,"num_osds":8,"num_up_osds":1,"osd_up_since":1715657609,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:36.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: Deploying daemon osd.6 on smithi137 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/4014565460' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: osd.2 [v2:172.21.15.137:6808/3533322947,v1:172.21.15.137:6809/3533322947] boot 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: osdmap e20: 8 total, 2 up, 8 in 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:36.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:36.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:36.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:36.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='osd.1 ' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:36.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:36.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:36 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:37.345 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:37.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: pgmap v66: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: osdmap e21: 8 total, 2 up, 8 in 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:37.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:37 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:37.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: pgmap v66: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-05-14T03:33:37.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:37.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: osdmap e21: 8 total, 2 up, 8 in 2024-05-14T03:33:37.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:37.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:37 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:38.233 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:38.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141] boot 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: osdmap e22: 8 total, 3 up, 8 in 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:38.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:38.848 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:38.848 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-05-14T03:33:38.848 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-05-14T03:33:38.848 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: pgmap v69: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-05-14T03:33:38.848 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:38 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 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-05-14T03:33:38.947 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:38.947 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:38.947 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: osd.1 [v2:172.21.15.96:6802/3725312141,v1:172.21.15.96:6803/3725312141] boot 2024-05-14T03:33:38.948 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: osdmap e22: 8 total, 3 up, 8 in 2024-05-14T03:33:38.948 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-05-14T03:33:38.948 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: pgmap v69: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-05-14T03:33:38.949 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:38 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 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-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 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-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: osdmap e23: 8 total, 3 up, 8 in 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:39.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:39.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-05-14T03:33:39.983 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-05-14T03:33:39.983 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 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-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: osdmap e23: 8 total, 3 up, 8 in 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:39.984 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-05-14T03:33:40.702 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:40.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:40.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: osdmap e24: 8 total, 3 up, 8 in 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='osd.4 ' entity='osd.4' 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: pgmap v72: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:40.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:40 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1766638415' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:40.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:40.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-05-14T03:33:40.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: osdmap e24: 8 total, 3 up, 8 in 2024-05-14T03:33:40.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='osd.4 ' entity='osd.4' 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: pgmap v72: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:40.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:40 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1766638415' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:41.401 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":24,"num_osds":8,"num_up_osds":3,"osd_up_since":1715657617,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:41.879 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:41.879 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831] boot 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: osdmap e25: 8 total, 4 up, 8 in 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:41.880 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:42.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:42.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:42.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: osd.4 [v2:172.21.15.137:6816/3059344831,v1:172.21.15.137:6817/3059344831] boot 2024-05-14T03:33:42.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: osdmap e25: 8 total, 4 up, 8 in 2024-05-14T03:33:42.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-05-14T03:33:42.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:42.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:42.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:42.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:42.402 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:42.747 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: osdmap e26: 8 total, 4 up, 8 in 2024-05-14T03:33:42.747 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:42.747 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:42.747 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: Deploying daemon osd.5 on smithi096 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: pgmap v75: 1 pgs: 1 creating+activating; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-05-14T03:33:42.748 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.902 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: osdmap e26: 8 total, 4 up, 8 in 2024-05-14T03:33:42.902 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:42.902 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: Deploying daemon osd.5 on smithi096 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: pgmap v75: 1 pgs: 1 creating+activating; 0 B data, 106 MiB used, 357 GiB / 358 GiB avail 2024-05-14T03:33:42.903 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:43.572 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:43.782 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:43 smithi096 sudo[69735]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-05-14T03:33:43.782 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:43 smithi096 sudo[69735]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-05-14T03:33:43.782 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:43 smithi096 sudo[69735]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-05-14T03:33:43.782 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:43 smithi096 sudo[69735]: pam_unix(sudo:session): session closed for user root 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 sudo[69749]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 sudo[69749]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 sudo[69749]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 sudo[69749]: pam_unix(sudo:session): session closed for user root 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-05-14T03:33:44.036 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-05-14T03:33:44.037 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.037 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.037 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.037 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:44 smithi096 ceph-mon[35980]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.296 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:44.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 ceph-mon[46839]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-05-14T03:33:44.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58521]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-05-14T03:33:44.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58521]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-05-14T03:33:44.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58521]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-05-14T03:33:44.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58521]: pam_unix(sudo:session): session closed for user root 2024-05-14T03:33:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58524]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-05-14T03:33:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58524]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-05-14T03:33:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58524]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-05-14T03:33:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:44 smithi137 sudo[58524]: pam_unix(sudo:session): session closed for user root 2024-05-14T03:33:45.321 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-05-14T03:33:45.321 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: mgrmap e19: smithi096.iktflt(active, since 2m), standbys: smithi137.outbui 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: osdmap e27: 8 total, 4 up, 8 in 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:45.322 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: pgmap v77: 1 pgs: 1 creating+activating; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:45.323 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:45 smithi096 ceph-mon[35980]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-05-14T03:33:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-05-14T03:33:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:33:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:33:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: mgrmap e19: smithi096.iktflt(active, since 2m), standbys: smithi137.outbui 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: osdmap e27: 8 total, 4 up, 8 in 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi096"}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "mon metadata", "id": "smithi137"}]: dispatch 2024-05-14T03:33:45.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: pgmap v77: 1 pgs: 1 creating+activating; 0 B data, 107 MiB used, 357 GiB / 358 GiB avail 2024-05-14T03:33:45.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-05-14T03:33:45.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:45.443 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:45 smithi137 ceph-mon[46839]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: osdmap e28: 8 total, 4 up, 8 in 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:46.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:46 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi137", "root=default"]}]': finished 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: osdmap e28: 8 total, 4 up, 8 in 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:46.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:46.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:46.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:46 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:46.892 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:47.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710] boot 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: osdmap e29: 8 total, 5 up, 8 in 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: pgmap v80: 1 pgs: 1 creating+activating; 0 B data, 135 MiB used, 447 GiB / 447 GiB avail 2024-05-14T03:33:47.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:47 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1843379522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: osd.6 [v2:172.21.15.137:6824/3132943710,v1:172.21.15.137:6825/3132943710] boot 2024-05-14T03:33:47.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: osdmap e29: 8 total, 5 up, 8 in 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: pgmap v80: 1 pgs: 1 creating+activating; 0 B data, 135 MiB used, 447 GiB / 447 GiB avail 2024-05-14T03:33:47.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:47 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1843379522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:47.993 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":29,"num_osds":8,"num_up_osds":5,"osd_up_since":1715657626,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":1} 2024-05-14T03:33:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:48.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439] boot 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: osdmap e30: 8 total, 6 up, 8 in 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: osdmap e31: 8 total, 6 up, 8 in 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:48.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:48 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:48.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:48.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:48.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:48.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: osd.3 [v2:172.21.15.96:6810/2495478439,v1:172.21.15.96:6811/2495478439] boot 2024-05-14T03:33:48.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: osdmap e30: 8 total, 6 up, 8 in 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: osdmap e31: 8 total, 6 up, 8 in 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:48.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:48 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:48.997 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:49.568 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:49 smithi096 ceph-mon[35980]: pgmap v83: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:49.568 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:49 smithi096 ceph-mon[35980]: osdmap e32: 8 total, 6 up, 8 in 2024-05-14T03:33:49.568 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:49.569 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:49 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:49.610 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:49 smithi137 ceph-mon[46839]: pgmap v83: 1 pgs: 1 remapped+peering; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:49 smithi137 ceph-mon[46839]: osdmap e32: 8 total, 6 up, 8 in 2024-05-14T03:33:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:49 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:50.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: osdmap e33: 8 total, 6 up, 8 in 2024-05-14T03:33:50.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:50.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:50.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:50.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:50.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-05-14T03:33:50.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:50 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: osdmap e33: 8 total, 6 up, 8 in 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-05-14T03:33:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:50 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:33:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:51 smithi096 ceph-mon[35980]: Deploying daemon osd.7 on smithi096 2024-05-14T03:33:51.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:51 smithi096 ceph-mon[35980]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:51 smithi096 ceph-mon[35980]: osdmap e34: 8 total, 6 up, 8 in 2024-05-14T03:33:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:51 smithi137 ceph-mon[46839]: Deploying daemon osd.7 on smithi096 2024-05-14T03:33:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:51 smithi137 ceph-mon[46839]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:51 smithi137 ceph-mon[46839]: osdmap e34: 8 total, 6 up, 8 in 2024-05-14T03:33:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:53.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:53 smithi096 ceph-mon[35980]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:53.435 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:53 smithi096 ceph-mon[35980]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-05-14T03:33:53.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:53 smithi137 ceph-mon[46839]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-05-14T03:33:53.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:53 smithi137 ceph-mon[46839]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-05-14T03:33:54.032 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:54.512 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-05-14T03:33:54.512 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: osdmap e35: 8 total, 6 up, 8 in 2024-05-14T03:33:54.512 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.512 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3860452418' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: osdmap e36: 8 total, 6 up, 8 in 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:54.513 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: osdmap e35: 8 total, 6 up, 8 in 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3860452418' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:54.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:33:54.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: osdmap e36: 8 total, 6 up, 8 in 2024-05-14T03:33:54.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:54.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:54.868 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":35,"num_osds":8,"num_up_osds":6,"osd_up_since":1715657627,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:33:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:55 smithi096 ceph-mon[35980]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-05-14T03:33:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:55 smithi096 ceph-mon[35980]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' 2024-05-14T03:33:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:55.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:55 smithi137 ceph-mon[46839]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-05-14T03:33:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:55 smithi137 ceph-mon[46839]: from='osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389]' entity='osd.5' 2024-05-14T03:33:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:33:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:55.869 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:33:56.109 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389] boot 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: osdmap e37: 8 total, 7 up, 8 in 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: osd.5 [v2:172.21.15.96:6818/3101931389,v1:172.21.15.96:6819/3101931389] boot 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: osdmap e37: 8 total, 7 up, 8 in 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-05-14T03:33:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:57.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:57 smithi096 ceph-mon[35980]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-05-14T03:33:57.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:57 smithi137 ceph-mon[46839]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 163 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-05-14T03:33:58.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:58 smithi096 ceph-mon[35980]: osdmap e38: 8 total, 7 up, 8 in 2024-05-14T03:33:58.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:58 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:58.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:58 smithi137 ceph-mon[46839]: osdmap e38: 8 total, 7 up, 8 in 2024-05-14T03:33:58.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:58 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:33:58.740 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:33:59.470 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:59 smithi096 ceph-mon[35980]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:33:59.471 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:59 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3201277900' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:59.471 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:59 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:59.471 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:33:59 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:59 smithi137 ceph-mon[46839]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:33:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:59 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3201277900' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:33:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:59 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:33:59 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:33:59.716 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1715657635,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:34:00.718 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:34:01.130 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:01.631 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:01 smithi096 ceph-mon[35980]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:01.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:01 smithi137 ceph-mon[46839]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:03.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:03 smithi096 ceph-mon[35980]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:03.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:03 smithi096 ceph-mon[35980]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-05-14T03:34:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:03 smithi137 ceph-mon[46839]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:03 smithi137 ceph-mon[46839]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-05-14T03:34:04.442 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:04.474 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-05-14T03:34:04.474 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: osdmap e39: 8 total, 7 up, 8 in 2024-05-14T03:34:04.475 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:04.475 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:34:04.475 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:04.475 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:04.475 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:34:04.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-05-14T03:34:04.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: osdmap e39: 8 total, 7 up, 8 in 2024-05-14T03:34:04.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:04.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]: dispatch 2024-05-14T03:34:04.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:04.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:04.694 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:34:05.211 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":40,"num_osds":8,"num_up_osds":7,"osd_up_since":1715657635,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: osdmap e40: 8 total, 7 up, 8 in 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/161213183' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:34:05.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:05 smithi137 ceph-mon[46839]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' 2024-05-14T03:34:05.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi096", "root=default"]}]': finished 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: osdmap e40: 8 total, 7 up, 8 in 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/161213183' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:34:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:05 smithi096 ceph-mon[35980]: from='osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430]' entity='osd.7' 2024-05-14T03:34:06.212 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd stat -f json 2024-05-14T03:34:06.598 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: purged_snaps scrub starts 2024-05-14T03:34:06.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: purged_snaps scrub ok 2024-05-14T03:34:06.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:06.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430] boot 2024-05-14T03:34:06.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: osdmap e41: 8 total, 8 up, 8 in 2024-05-14T03:34:06.599 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:06.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:06.600 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:06 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: purged_snaps scrub starts 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: purged_snaps scrub ok 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: osd.7 [v2:172.21.15.96:6826/4247601430,v1:172.21.15.96:6827/4247601430] boot 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: osdmap e41: 8 total, 8 up, 8 in 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:06 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:07.460 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:07 smithi137 ceph-mon[46839]: pgmap v102: 1 pgs: 1 unknown; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:07 smithi137 ceph-mon[46839]: osdmap e42: 8 total, 8 up, 8 in 2024-05-14T03:34:07.844 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:07 smithi096 ceph-mon[35980]: pgmap v102: 1 pgs: 1 unknown; 577 KiB data, 189 MiB used, 626 GiB / 626 GiB avail 2024-05-14T03:34:07.844 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:07 smithi096 ceph-mon[35980]: osdmap e42: 8 total, 8 up, 8 in 2024-05-14T03:34:08.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:08 smithi137 ceph-mon[46839]: osdmap e43: 8 total, 8 up, 8 in 2024-05-14T03:34:08.819 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:08 smithi096 ceph-mon[35980]: osdmap e43: 8 total, 8 up, 8 in 2024-05-14T03:34:09.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:09 smithi096 ceph-mon[35980]: pgmap v105: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:09.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:09 smithi096 ceph-mon[35980]: osdmap e44: 8 total, 8 up, 8 in 2024-05-14T03:34:09.673 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:09 smithi137 ceph-mon[46839]: pgmap v105: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:09.673 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:09 smithi137 ceph-mon[46839]: osdmap e44: 8 total, 8 up, 8 in 2024-05-14T03:34:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:10 smithi137 ceph-mon[46839]: osdmap e45: 8 total, 8 up, 8 in 2024-05-14T03:34:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:10 smithi096 ceph-mon[35980]: osdmap e45: 8 total, 8 up, 8 in 2024-05-14T03:34:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:10.934 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:11.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: pgmap v108: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: Detected new or changed devices on smithi137 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: Adjusting osd_memory_target on smithi137 to 3736M 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:11 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/31178836' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:34:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: pgmap v108: 1 pgs: 1 unknown; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: Detected new or changed devices on smithi137 2024-05-14T03:34:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: Adjusting osd_memory_target on smithi137 to 3736M 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:11.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:11 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/31178836' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-05-14T03:34:11.734 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":45,"num_osds":8,"num_up_osds":8,"osd_up_since":1715657645,"num_in_osds":8,"osd_in_since":1715657594,"num_remapped_pgs":0} 2024-05-14T03:34:11.735 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd dump --format=json 2024-05-14T03:34:12.678 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:13 smithi137 ceph-mon[46839]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-05-14T03:34:13.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:13 smithi096 ceph-mon[35980]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s, 0 objects/s recovering 2024-05-14T03:34:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:15 smithi137 ceph-mon[46839]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-05-14T03:34:15.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:15 smithi096 ceph-mon[35980]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-05-14T03:34:16.026 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:16.026 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":45,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","created":"2024-05-14T03:29:17.215064+0000","modified":"2024-05-14T03:34:09.385198+0000","last_up_change":"2024-05-14T03:34:05.370638+0000","last_in_change":"2024-05-14T03:33:14.178325+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-05-14T03:33:38.459457+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"092de1d4-1f64-4b84-94ae-49f512a0d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6801","nonce":3167801691}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6803","nonce":3167801691}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6807","nonce":3167801691}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6805","nonce":3167801691}]},"public_addr":"172.21.15.137:6801/3167801691","cluster_addr":"172.21.15.137:6803/3167801691","heartbeat_back_addr":"172.21.15.137:6807/3167801691","heartbeat_front_addr":"172.21.15.137:6805/3167801691","state":["exists","up"]},{"osd":1,"uuid":"251b0c55-939a-4853-89d2-f764073069b9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6803","nonce":3725312141}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6805","nonce":3725312141}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6809","nonce":3725312141}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6807","nonce":3725312141}]},"public_addr":"172.21.15.96:6803/3725312141","cluster_addr":"172.21.15.96:6805/3725312141","heartbeat_back_addr":"172.21.15.96:6809/3725312141","heartbeat_front_addr":"172.21.15.96:6807/3725312141","state":["exists","up"]},{"osd":2,"uuid":"f468f024-2170-420f-91e6-27a96dee810f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6809","nonce":3533322947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6811","nonce":3533322947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6815","nonce":3533322947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6813","nonce":3533322947}]},"public_addr":"172.21.15.137:6809/3533322947","cluster_addr":"172.21.15.137:6811/3533322947","heartbeat_back_addr":"172.21.15.137:6815/3533322947","heartbeat_front_addr":"172.21.15.137:6813/3533322947","state":["exists","up"]},{"osd":3,"uuid":"75dc9473-026f-4ff5-99ed-f878f7c8172a","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.96:6810","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6811","nonce":2495478439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6813","nonce":2495478439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6816","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6817","nonce":2495478439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6815","nonce":2495478439}]},"public_addr":"172.21.15.96:6811/2495478439","cluster_addr":"172.21.15.96:6813/2495478439","heartbeat_back_addr":"172.21.15.96:6817/2495478439","heartbeat_front_addr":"172.21.15.96:6815/2495478439","state":["exists","up"]},{"osd":4,"uuid":"8af303f5-6536-4a38-aefd-490cd7e3bf75","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6816","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6817","nonce":3059344831}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6818","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6819","nonce":3059344831}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6822","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6823","nonce":3059344831}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6820","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6821","nonce":3059344831}]},"public_addr":"172.21.15.137:6817/3059344831","cluster_addr":"172.21.15.137:6819/3059344831","heartbeat_back_addr":"172.21.15.137:6823/3059344831","heartbeat_front_addr":"172.21.15.137:6821/3059344831","state":["exists","up"]},{"osd":5,"uuid":"34528204-8cc5-428b-8a9f-8e192b3d41f2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6818","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6819","nonce":3101931389}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6820","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6821","nonce":3101931389}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6824","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6825","nonce":3101931389}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6822","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6823","nonce":3101931389}]},"public_addr":"172.21.15.96:6819/3101931389","cluster_addr":"172.21.15.96:6821/3101931389","heartbeat_back_addr":"172.21.15.96:6825/3101931389","heartbeat_front_addr":"172.21.15.96:6823/3101931389","state":["exists","up"]},{"osd":6,"uuid":"e6a248f2-8bb9-41ff-958d-657c47749bf6","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.137:6824","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6825","nonce":3132943710}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6826","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6827","nonce":3132943710}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6830","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6831","nonce":3132943710}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6828","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6829","nonce":3132943710}]},"public_addr":"172.21.15.137:6825/3132943710","cluster_addr":"172.21.15.137:6827/3132943710","heartbeat_back_addr":"172.21.15.137:6831/3132943710","heartbeat_front_addr":"172.21.15.137:6829/3132943710","state":["exists","up"]},{"osd":7,"uuid":"525e8a84-c60a-4b9b-9e70-939cc7c6e694","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6826","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6827","nonce":4247601430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6828","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6829","nonce":4247601430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6832","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6833","nonce":4247601430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6830","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6831","nonce":4247601430}]},"public_addr":"172.21.15.96:6827/4247601430","cluster_addr":"172.21.15.96:6829/4247601430","heartbeat_back_addr":"172.21.15.96:6833/4247601430","heartbeat_front_addr":"172.21.15.96:6831/4247601430","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:28.110099+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:36.207779+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:33.403374+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:46.065115+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:38.751536+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:53.751566+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:44.053358+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:34:03.392757+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.96:0/2001283556":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6800/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3888692462":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/2079018925":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3979021482":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/3387366020":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/4221446165":"2024-05-15T03:29:45.456234+0000","172.21.15.96:6801/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/773287507":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/2281981971":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/314945905":"2024-05-15T03:29:45.456234+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-05-14T03:34:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:16 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/508186911' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:16.842 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:16 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/508186911' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:16.863 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-05-14T03:33:38.459457+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-05-14T03:34:16.863 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-05-14T03:34:17.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:17 smithi096 ceph-mon[35980]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-05-14T03:34:17.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:17 smithi137 ceph-mon[46839]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-05-14T03:34:17.809 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: Detected new or changed devices on smithi096 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.051 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: Adjusting osd_memory_target on smithi096 to 2968M 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.052 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:18 smithi137 ceph-mon[46839]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-05-14T03:34:19.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: Detected new or changed devices on smithi096 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: Adjusting osd_memory_target on smithi096 to 2968M 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:34:19.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-05-14T03:34:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:34:19.097 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:18 smithi096 ceph-mon[35980]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-05-14T03:34:21.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:21 smithi137 ceph-mon[46839]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-05-14T03:34:21.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:21 smithi096 ceph-mon[35980]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-05-14T03:34:21.839 INFO:teuthology.orchestra.run.smithi096.stdout:pg_num: 1 2024-05-14T03:34:22.489 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:22 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/438528912' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-05-14T03:34:22.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:22 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/438528912' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-05-14T03:34:22.772 INFO:tasks.cephadm:Setting up client nodes... 2024-05-14T03:34:22.773 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-05-14T03:34:23.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:23 smithi137 ceph-mon[46839]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-05-14T03:34:23.446 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:23 smithi096 ceph-mon[35980]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-05-14T03:34:23.538 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:25.340 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:25 smithi137 ceph-mon[46839]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:25.367 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:25.402 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:25 smithi096 ceph-mon[35980]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:25.402 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:25.968 INFO:teuthology.orchestra.run.smithi096.stdout:[client.0] 2024-05-14T03:34:25.968 INFO:teuthology.orchestra.run.smithi096.stdout: key = AQDB20JmztGbORAAD3Bghropuq33yo67y71mzg== 2024-05-14T03:34:26.376 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:26 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1320608010' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-05-14T03:34:26.377 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:26 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1320608010' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-05-14T03:34:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:26 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1320608010' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-05-14T03:34:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:26 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1320608010' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-05-14T03:34:27.287 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:34:27.287 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-05-14T03:34:27.287 DEBUG:teuthology.orchestra.run.smithi096:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-05-14T03:34:27.327 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-05-14T03:34:27.563 INFO:teuthology.orchestra.run.smithi137.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi137/config 2024-05-14T03:34:27.570 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:27 smithi096 ceph-mon[35980]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:27.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:27 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:27.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:27 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:27.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:27 smithi137 ceph-mon[46839]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:27.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:27 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:27.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:27 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:29.416 INFO:teuthology.orchestra.run.smithi137.stdout:[client.1] 2024-05-14T03:34:29.416 INFO:teuthology.orchestra.run.smithi137.stdout: key = AQDF20Jmnj+FGBAAIs4ve9F1EbEDRgdl697I1g== 2024-05-14T03:34:29.559 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:29 smithi096 ceph-mon[35980]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:29 smithi137 ceph-mon[46839]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:30.183 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:34:30.183 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-05-14T03:34:30.183 DEBUG:teuthology.orchestra.run.smithi137:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-05-14T03:34:30.226 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-05-14T03:34:30.226 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-05-14T03:34:30.226 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph mgr dump --format=json 2024-05-14T03:34:30.256 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:30 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/544960419' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-05-14T03:34:30.256 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:30 smithi096 ceph-mon[35980]: 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-05-14T03:34:30.256 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:30 smithi096 ceph-mon[35980]: 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-05-14T03:34:30.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:30 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/544960419' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-05-14T03:34:30.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:30 smithi137 ceph-mon[46839]: 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-05-14T03:34:30.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:30 smithi137 ceph-mon[46839]: 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-05-14T03:34:30.545 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:31 smithi137 ceph-mon[46839]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:31.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:31 smithi096 ceph-mon[35980]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:33 smithi137 ceph-mon[46839]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:33 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:33.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:33 smithi096 ceph-mon[35980]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:33.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:33.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:33 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:34:33.939 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:34.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:34 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/549937665' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-05-14T03:34:34.682 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":19,"flags":0,"active_gid":14217,"active_name":"smithi096.iktflt","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6800","nonce":1680217615},{"type":"v1","addr":"172.21.15.96:6801","nonce":1680217615}]},"active_addr":"172.21.15.96:6801/1680217615","active_change":"2024-05-14T03:31:40.131531+0000","active_mgr_features":4540138322906710015,"available":true,"standbys":[{"gid":14238,"name":"smithi137.outbui","mgr_features":4540138322906710015,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","upmap"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:9.4.7","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.96:8443/","prometheus":"http://172.21.15.96:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.96:0","nonce":1428611903}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.96:0","nonce":2794233547}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.96:0","nonce":1239927014}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.96:0","nonce":2413759072}]}]} 2024-05-14T03:34:34.688 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-05-14T03:34:34.688 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-05-14T03:34:34.689 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd dump --format=json 2024-05-14T03:34:34.690 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:34 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/549937665' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-05-14T03:34:34.946 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:35 smithi096 ceph-mon[35980]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:35 smithi137 ceph-mon[46839]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:36.986 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:36.986 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":45,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","created":"2024-05-14T03:29:17.215064+0000","modified":"2024-05-14T03:34:09.385198+0000","last_up_change":"2024-05-14T03:34:05.370638+0000","last_in_change":"2024-05-14T03:33:14.178325+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-05-14T03:33:38.459457+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"092de1d4-1f64-4b84-94ae-49f512a0d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6801","nonce":3167801691}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6803","nonce":3167801691}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6807","nonce":3167801691}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6805","nonce":3167801691}]},"public_addr":"172.21.15.137:6801/3167801691","cluster_addr":"172.21.15.137:6803/3167801691","heartbeat_back_addr":"172.21.15.137:6807/3167801691","heartbeat_front_addr":"172.21.15.137:6805/3167801691","state":["exists","up"]},{"osd":1,"uuid":"251b0c55-939a-4853-89d2-f764073069b9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6803","nonce":3725312141}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6805","nonce":3725312141}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6809","nonce":3725312141}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6807","nonce":3725312141}]},"public_addr":"172.21.15.96:6803/3725312141","cluster_addr":"172.21.15.96:6805/3725312141","heartbeat_back_addr":"172.21.15.96:6809/3725312141","heartbeat_front_addr":"172.21.15.96:6807/3725312141","state":["exists","up"]},{"osd":2,"uuid":"f468f024-2170-420f-91e6-27a96dee810f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6809","nonce":3533322947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6811","nonce":3533322947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6815","nonce":3533322947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6813","nonce":3533322947}]},"public_addr":"172.21.15.137:6809/3533322947","cluster_addr":"172.21.15.137:6811/3533322947","heartbeat_back_addr":"172.21.15.137:6815/3533322947","heartbeat_front_addr":"172.21.15.137:6813/3533322947","state":["exists","up"]},{"osd":3,"uuid":"75dc9473-026f-4ff5-99ed-f878f7c8172a","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.96:6810","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6811","nonce":2495478439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6813","nonce":2495478439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6816","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6817","nonce":2495478439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6815","nonce":2495478439}]},"public_addr":"172.21.15.96:6811/2495478439","cluster_addr":"172.21.15.96:6813/2495478439","heartbeat_back_addr":"172.21.15.96:6817/2495478439","heartbeat_front_addr":"172.21.15.96:6815/2495478439","state":["exists","up"]},{"osd":4,"uuid":"8af303f5-6536-4a38-aefd-490cd7e3bf75","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6816","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6817","nonce":3059344831}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6818","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6819","nonce":3059344831}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6822","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6823","nonce":3059344831}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6820","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6821","nonce":3059344831}]},"public_addr":"172.21.15.137:6817/3059344831","cluster_addr":"172.21.15.137:6819/3059344831","heartbeat_back_addr":"172.21.15.137:6823/3059344831","heartbeat_front_addr":"172.21.15.137:6821/3059344831","state":["exists","up"]},{"osd":5,"uuid":"34528204-8cc5-428b-8a9f-8e192b3d41f2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6818","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6819","nonce":3101931389}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6820","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6821","nonce":3101931389}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6824","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6825","nonce":3101931389}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6822","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6823","nonce":3101931389}]},"public_addr":"172.21.15.96:6819/3101931389","cluster_addr":"172.21.15.96:6821/3101931389","heartbeat_back_addr":"172.21.15.96:6825/3101931389","heartbeat_front_addr":"172.21.15.96:6823/3101931389","state":["exists","up"]},{"osd":6,"uuid":"e6a248f2-8bb9-41ff-958d-657c47749bf6","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.137:6824","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6825","nonce":3132943710}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6826","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6827","nonce":3132943710}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6830","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6831","nonce":3132943710}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6828","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6829","nonce":3132943710}]},"public_addr":"172.21.15.137:6825/3132943710","cluster_addr":"172.21.15.137:6827/3132943710","heartbeat_back_addr":"172.21.15.137:6831/3132943710","heartbeat_front_addr":"172.21.15.137:6829/3132943710","state":["exists","up"]},{"osd":7,"uuid":"525e8a84-c60a-4b9b-9e70-939cc7c6e694","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6826","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6827","nonce":4247601430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6828","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6829","nonce":4247601430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6832","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6833","nonce":4247601430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6830","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6831","nonce":4247601430}]},"public_addr":"172.21.15.96:6827/4247601430","cluster_addr":"172.21.15.96:6829/4247601430","heartbeat_back_addr":"172.21.15.96:6833/4247601430","heartbeat_front_addr":"172.21.15.96:6831/4247601430","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:28.110099+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:36.207779+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:33.403374+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:46.065115+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:38.751536+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:53.751566+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:44.053358+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:34:03.392757+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.96:0/2001283556":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6800/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3888692462":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/2079018925":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3979021482":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/3387366020":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/4221446165":"2024-05-15T03:29:45.456234+0000","172.21.15.96:6801/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/773287507":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/2281981971":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/314945905":"2024-05-15T03:29:45.456234+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-05-14T03:34:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:37 smithi137 ceph-mon[46839]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:37 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2924733047' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:37.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:37 smithi096 ceph-mon[35980]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:37.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:37 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2924733047' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:37.873 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-05-14T03:34:37.873 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd dump --format=json 2024-05-14T03:34:38.101 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:39 smithi137 ceph-mon[46839]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:39.818 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:39 smithi096 ceph-mon[35980]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:40.294 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:34:40.294 INFO:teuthology.orchestra.run.smithi096.stdout:{"epoch":45,"fsid":"09e7892c-11a2-11ef-bc98-c7b262605968","created":"2024-05-14T03:29:17.215064+0000","modified":"2024-05-14T03:34:09.385198+0000","last_up_change":"2024-05-14T03:34:05.370638+0000","last_in_change":"2024-05-14T03:33:14.178325+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":"reef","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-05-14T03:33:38.459457+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"092de1d4-1f64-4b84-94ae-49f512a0d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6800","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6801","nonce":3167801691}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6802","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6803","nonce":3167801691}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6806","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6807","nonce":3167801691}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6804","nonce":3167801691},{"type":"v1","addr":"172.21.15.137:6805","nonce":3167801691}]},"public_addr":"172.21.15.137:6801/3167801691","cluster_addr":"172.21.15.137:6803/3167801691","heartbeat_back_addr":"172.21.15.137:6807/3167801691","heartbeat_front_addr":"172.21.15.137:6805/3167801691","state":["exists","up"]},{"osd":1,"uuid":"251b0c55-939a-4853-89d2-f764073069b9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6802","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6803","nonce":3725312141}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6804","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6805","nonce":3725312141}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6808","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6809","nonce":3725312141}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6806","nonce":3725312141},{"type":"v1","addr":"172.21.15.96:6807","nonce":3725312141}]},"public_addr":"172.21.15.96:6803/3725312141","cluster_addr":"172.21.15.96:6805/3725312141","heartbeat_back_addr":"172.21.15.96:6809/3725312141","heartbeat_front_addr":"172.21.15.96:6807/3725312141","state":["exists","up"]},{"osd":2,"uuid":"f468f024-2170-420f-91e6-27a96dee810f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6808","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6809","nonce":3533322947}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6810","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6811","nonce":3533322947}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6814","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6815","nonce":3533322947}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6812","nonce":3533322947},{"type":"v1","addr":"172.21.15.137:6813","nonce":3533322947}]},"public_addr":"172.21.15.137:6809/3533322947","cluster_addr":"172.21.15.137:6811/3533322947","heartbeat_back_addr":"172.21.15.137:6815/3533322947","heartbeat_front_addr":"172.21.15.137:6813/3533322947","state":["exists","up"]},{"osd":3,"uuid":"75dc9473-026f-4ff5-99ed-f878f7c8172a","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.96:6810","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6811","nonce":2495478439}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6812","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6813","nonce":2495478439}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6816","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6817","nonce":2495478439}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6814","nonce":2495478439},{"type":"v1","addr":"172.21.15.96:6815","nonce":2495478439}]},"public_addr":"172.21.15.96:6811/2495478439","cluster_addr":"172.21.15.96:6813/2495478439","heartbeat_back_addr":"172.21.15.96:6817/2495478439","heartbeat_front_addr":"172.21.15.96:6815/2495478439","state":["exists","up"]},{"osd":4,"uuid":"8af303f5-6536-4a38-aefd-490cd7e3bf75","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6816","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6817","nonce":3059344831}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6818","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6819","nonce":3059344831}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6822","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6823","nonce":3059344831}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6820","nonce":3059344831},{"type":"v1","addr":"172.21.15.137:6821","nonce":3059344831}]},"public_addr":"172.21.15.137:6817/3059344831","cluster_addr":"172.21.15.137:6819/3059344831","heartbeat_back_addr":"172.21.15.137:6823/3059344831","heartbeat_front_addr":"172.21.15.137:6821/3059344831","state":["exists","up"]},{"osd":5,"uuid":"34528204-8cc5-428b-8a9f-8e192b3d41f2","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6818","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6819","nonce":3101931389}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6820","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6821","nonce":3101931389}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6824","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6825","nonce":3101931389}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6822","nonce":3101931389},{"type":"v1","addr":"172.21.15.96:6823","nonce":3101931389}]},"public_addr":"172.21.15.96:6819/3101931389","cluster_addr":"172.21.15.96:6821/3101931389","heartbeat_back_addr":"172.21.15.96:6825/3101931389","heartbeat_front_addr":"172.21.15.96:6823/3101931389","state":["exists","up"]},{"osd":6,"uuid":"e6a248f2-8bb9-41ff-958d-657c47749bf6","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.137:6824","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6825","nonce":3132943710}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6826","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6827","nonce":3132943710}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6830","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6831","nonce":3132943710}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.137:6828","nonce":3132943710},{"type":"v1","addr":"172.21.15.137:6829","nonce":3132943710}]},"public_addr":"172.21.15.137:6825/3132943710","cluster_addr":"172.21.15.137:6827/3132943710","heartbeat_back_addr":"172.21.15.137:6831/3132943710","heartbeat_front_addr":"172.21.15.137:6829/3132943710","state":["exists","up"]},{"osd":7,"uuid":"525e8a84-c60a-4b9b-9e70-939cc7c6e694","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6826","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6827","nonce":4247601430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6828","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6829","nonce":4247601430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6832","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6833","nonce":4247601430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.96:6830","nonce":4247601430},{"type":"v1","addr":"172.21.15.96:6831","nonce":4247601430}]},"public_addr":"172.21.15.96:6827/4247601430","cluster_addr":"172.21.15.96:6829/4247601430","heartbeat_back_addr":"172.21.15.96:6833/4247601430","heartbeat_front_addr":"172.21.15.96:6831/4247601430","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:28.110099+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:36.207779+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:33.403374+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:46.065115+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:38.751536+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:53.751566+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:33:44.053358+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138322906710015,"old_weight":0,"last_purged_snaps_scrub":"2024-05-14T03:34:03.392757+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.96:0/2001283556":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6800/3090466953":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3888692462":"2024-05-15T03:31:40.131420+0000","172.21.15.96:6801/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/163157188":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/2079018925":"2024-05-15T03:31:40.131420+0000","172.21.15.96:0/3979021482":"2024-05-15T03:30:22.085268+0000","172.21.15.96:6800/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/3387366020":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/4221446165":"2024-05-15T03:29:45.456234+0000","172.21.15.96:6801/4075045921":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/773287507":"2024-05-15T03:29:45.456234+0000","172.21.15.96:0/2281981971":"2024-05-15T03:30:22.085268+0000","172.21.15.96:0/314945905":"2024-05-15T03:29:45.456234+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-05-14T03:34:40.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:40.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:40 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/967661913' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:40 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/967661913' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-05-14T03:34:41.206 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-05-14T03:34:41.207 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-05-14T03:34:41.207 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-05-14T03:34:41.208 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-05-14T03:34:41.208 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-05-14T03:34:41.208 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-05-14T03:34:41.209 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-05-14T03:34:41.209 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-05-14T03:34:41.465 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:41 smithi096 ceph-mon[35980]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:41.648 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:41 smithi137 ceph-mon[46839]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:41.709 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.073 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.074 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.303 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.304 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.304 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:43 smithi096 ceph-mon[35980]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:43.635 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:34:43.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:43 smithi137 ceph-mon[46839]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:45 smithi096 ceph-mon[35980]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:45.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:45 smithi137 ceph-mon[46839]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:47.803 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:47 smithi096 ceph-mon[35980]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:47.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:47 smithi137 ceph-mon[46839]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:49.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:49 smithi096 ceph-mon[35980]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:49.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:49 smithi137 ceph-mon[46839]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:51 smithi137 ceph-mon[46839]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:51.742 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:51 smithi096 ceph-mon[35980]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:53.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:53 smithi096 ceph-mon[35980]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:53.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:53 smithi137 ceph-mon[46839]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:54.554 INFO:teuthology.orchestra.run.smithi096.stdout:128849018895 2024-05-14T03:34:54.554 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-05-14T03:34:55.842 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:55 smithi096 ceph-mon[35980]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:55.842 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:55.860 INFO:teuthology.orchestra.run.smithi096.stdout:85899345939 2024-05-14T03:34:55.861 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-05-14T03:34:55.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:55 smithi137 ceph-mon[46839]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:55.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:34:56.263 INFO:teuthology.orchestra.run.smithi096.stdout:107374182417 2024-05-14T03:34:56.331 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-05-14T03:34:57.107 INFO:teuthology.orchestra.run.smithi096.stdout:94489280529 2024-05-14T03:34:57.107 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-05-14T03:34:57.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:57 smithi096 ceph-mon[35980]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:57.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:57 smithi137 ceph-mon[46839]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:57.988 INFO:teuthology.orchestra.run.smithi096.stdout:158913789967 2024-05-14T03:34:57.989 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-05-14T03:34:59.389 INFO:teuthology.orchestra.run.smithi096.stdout:68719476754 2024-05-14T03:34:59.389 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-05-14T03:34:59.677 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:34:59 smithi096 ceph-mon[35980]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:34:59.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:34:59 smithi137 ceph-mon[46839]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:00.004 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:00.008 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:00.035 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:00.036 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:00.040 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:01.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:01 smithi137 ceph-mon[46839]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:01.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:01 smithi096 ceph-mon[35980]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:02.834 INFO:teuthology.orchestra.run.smithi096.stdout:124554051601 2024-05-14T03:35:02.834 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-05-14T03:35:03.231 INFO:teuthology.orchestra.run.smithi096.stdout:176093659149 2024-05-14T03:35:03.231 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-05-14T03:35:03.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:03 smithi096 ceph-mon[35980]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:03.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:03 smithi137 ceph-mon[46839]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:05.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:05 smithi096 ceph-mon[35980]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:05.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:05 smithi137 ceph-mon[46839]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:07.218 INFO:teuthology.orchestra.run.smithi096.stdout:85899345942 2024-05-14T03:35:07.270 INFO:teuthology.orchestra.run.smithi096.stdout:128849018898 2024-05-14T03:35:07.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:07 smithi096 ceph-mon[35980]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:07.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:07 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/839599100' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-05-14T03:35:07.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:07 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/4052220114' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-05-14T03:35:07.816 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:07.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:07 smithi137 ceph-mon[46839]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:07.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:07 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/839599100' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-05-14T03:35:07.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:07 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/4052220114' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-05-14T03:35:08.821 INFO:teuthology.orchestra.run.smithi096.stdout:107374182421 2024-05-14T03:35:09.805 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:09 smithi096 ceph-mon[35980]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:09.805 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:09 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2263653365' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-05-14T03:35:09.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:09 smithi137 ceph-mon[46839]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:09.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:09 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2263653365' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-05-14T03:35:10.123 INFO:teuthology.orchestra.run.smithi096.stdout:68719476757 2024-05-14T03:35:10.528 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018895 got 128849018898 for osd.3 2024-05-14T03:35:10.529 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:10.832 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:10 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3767924615' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-05-14T03:35:10.832 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:10.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:10 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3767924615' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-05-14T03:35:10.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:11.158 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476754 got 68719476757 for osd.0 2024-05-14T03:35:11.158 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:11.759 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:11 smithi096 ceph-mon[35980]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:11.781 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345939 got 85899345942 for osd.2 2024-05-14T03:35:11.781 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:11.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:11 smithi137 ceph-mon[46839]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:13.207 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:13.233 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182417 got 107374182421 for osd.4 2024-05-14T03:35:13.233 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:13.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:13 smithi096 ceph-mon[35980]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:13.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:13 smithi137 ceph-mon[46839]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:14.358 INFO:teuthology.orchestra.run.smithi096.stdout:158913789971 2024-05-14T03:35:14.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/4128337631' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-05-14T03:35:14.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:14 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/4128337631' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-05-14T03:35:15.373 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:15.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:15 smithi096 ceph-mon[35980]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:15.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:15 smithi137 ceph-mon[46839]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:16.194 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789967 got 158913789971 for osd.5 2024-05-14T03:35:16.195 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:17.774 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:17 smithi096 ceph-mon[35980]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:17.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:17 smithi137 ceph-mon[46839]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:18.190 INFO:teuthology.orchestra.run.smithi096.stdout:94489280534 2024-05-14T03:35:18.301 INFO:teuthology.orchestra.run.smithi096.stdout:124554051605 2024-05-14T03:35:18.820 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:18 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3761742126' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-05-14T03:35:18.820 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:18 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2623658076' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-05-14T03:35:18.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:18 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3761742126' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-05-14T03:35:18.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:18 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2623658076' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-05-14T03:35:19.175 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051601 got 124554051605 for osd.6 2024-05-14T03:35:19.175 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:19 smithi096 ceph-mon[35980]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:19.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:19 smithi137 ceph-mon[46839]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:20.957 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280529 got 94489280534 for osd.1 2024-05-14T03:35:20.957 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:21.702 INFO:teuthology.orchestra.run.smithi096.stdout:176093659153 2024-05-14T03:35:21.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:21 smithi096 ceph-mon[35980]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:21.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:21 smithi137 ceph-mon[46839]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:22.472 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659149 got 176093659153 for osd.7 2024-05-14T03:35:22.472 DEBUG:teuthology.parallel:result is None 2024-05-14T03:35:22.473 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-05-14T03:35:22.473 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph pg dump --format=json 2024-05-14T03:35:22.701 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:22.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:22 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1853644259' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-05-14T03:35:22.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:22 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1853644259' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-05-14T03:35:23.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:23 smithi096 ceph-mon[35980]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:23.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:23 smithi137 ceph-mon[46839]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:24.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:24 smithi096 ceph-mon[35980]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:24.876 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:35:24.877 INFO:teuthology.orchestra.run.smithi096.stderr:dumped all 2024-05-14T03:35:24.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:24 smithi137 ceph-mon[46839]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:25 smithi096 ceph-mon[35980]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:35:25.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:25.714 INFO:teuthology.orchestra.run.smithi096.stdout:{"pg_ready":true,"pg_map":{"version":145,"stamp":"2024-05-14T03:35:24.173441+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":221500,"kb_used_data":5332,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706948,"statfs":{"total":767926730752,"available":767699914752,"internally_reserved":0,"allocated":5459968,"data_stored":3256858,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12743,"internal_metadata":221236793},"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.001975"},"pg_stats":[{"pgid":"1.0","version":"27'197","reported_seq":275,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-05-14T03:34:09.393107+0000","last_change":"2024-05-14T03:34:09.392843+0000","last_active":"2024-05-14T03:34:09.393107+0000","last_peered":"2024-05-14T03:34:09.393107+0000","last_clean":"2024-05-14T03:34:09.393107+0000","last_became_active":"2024-05-14T03:34:09.392486+0000","last_became_peered":"2024-05-14T03:34:09.392486+0000","last_unstale":"2024-05-14T03:34:09.393107+0000","last_undegraded":"2024-05-14T03:34:09.393107+0000","last_fullsized":"2024-05-14T03:34:09.393107+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-05-14T03:33:38.618944+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-05-14T03:33:38.618944+0000","last_clean_scrub_stamp":"2024-05-14T03:33:38.618944+0000","objects_scrubbed":0,"log_size":197,"log_dups_size":0,"ondisk_log_size":197,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-05-15T10:51:12.445615+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659154,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1052672,"data_stored":776445,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1589,"internal_metadata":27654603},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.97599999999999998,"5min":0.97599999999999998,"15min":0.97599999999999998},"last":0.504},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":1.591,"5min":1.591,"15min":1.591},"last":0.435}]},{"osd":1,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":1.1639999999999999,"5min":1.1639999999999999,"15min":1.1639999999999999},"last":0.40000000000000002},{"interface":"front","average":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":1.5409999999999999,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":0.27800000000000002}]},{"osd":2,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.94399999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"last":0.44800000000000001},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.49199999999999999}]},{"osd":3,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":1.494,"5min":1.494,"15min":1.494},"last":0.318},{"interface":"front","average":{"1min":0.44,"5min":0.44,"15min":0.44},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":1.25,"5min":1.25,"15min":1.25},"last":0.53700000000000003}]},{"osd":4,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":1,"5min":1,"15min":1},"last":0.57699999999999996},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.46300000000000002}]},{"osd":5,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.307,"5min":0.307,"15min":0.307},"max":{"1min":0.84299999999999997,"5min":0.84299999999999997,"15min":0.84299999999999997},"last":0.35199999999999998},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":1.5669999999999999,"5min":1.5669999999999999,"15min":1.5669999999999999},"last":0.38700000000000001}]},{"osd":6,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":1.6140000000000001,"5min":1.6140000000000001,"15min":1.6140000000000001},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":1.0249999999999999,"5min":1.0249999999999999,"15min":1.0249999999999999},"last":0.55800000000000005}]}]},{"osd":5,"up_from":37,"seq":158913789973,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":186077,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.58099999999999996},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.61599999999999999}]},{"osd":1,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"last":0.56699999999999995},{"interface":"front","average":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"last":0.47999999999999998}]},{"osd":2,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.64400000000000002},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.78700000000000003,"5min":0.78700000000000003,"15min":0.78700000000000003},"last":0.55300000000000005}]},{"osd":3,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.26000000000000001,"5min":0.26000000000000001,"15min":0.26000000000000001},"max":{"1min":2.48,"5min":2.48,"15min":2.48},"last":0.45700000000000002},{"interface":"front","average":{"1min":0.376,"5min":0.376,"15min":0.376},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"last":0.49399999999999999}]},{"osd":4,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.52100000000000002,"5min":0.52100000000000002,"15min":0.52100000000000002},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.69299999999999995}]},{"osd":6,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.68000000000000005},{"interface":"front","average":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.874,"5min":0.874,"15min":0.874},"last":0.63500000000000001}]},{"osd":7,"last update":"Tue May 14 03:35:09 2024","interfaces":[{"interface":"back","average":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.67200000000000004},{"interface":"front","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.627,"5min":0.627,"15min":0.627},"last":0.65900000000000003}]}]},{"osd":2,"up_from":20,"seq":85899345945,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":184946,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.38600000000000001}]},{"osd":1,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.73699999999999999,"5min":0.73699999999999999,"15min":0.73699999999999999},"last":0.54800000000000004},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"last":0.48299999999999998}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.502},{"interface":"front","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.58699999999999997}]},{"osd":4,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.40600000000000003},{"interface":"front","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.30399999999999999,"5min":0.30399999999999999,"15min":0.30399999999999999},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.44800000000000001}]},{"osd":5,"last update":"Tue May 14 03:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"min":{"1min":0.40500000000000003,"5min":0.40500000000000003,"15min":0.40500000000000003},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.53500000000000003}]},{"osd":6,"last update":"Tue May 14 03:34:46 2024","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.61499999999999999},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.63300000000000001}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.80200000000000005,"5min":0.80200000000000005,"15min":0.80200000000000005},"last":0.625},{"interface":"front","average":{"1min":0.61399999999999999,"5min":0.61399999999999999,"15min":0.61399999999999999},"min":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":0.78400000000000003,"5min":0.78400000000000003,"15min":0.78400000000000003},"last":0.57499999999999996}]}]},{"osd":0,"up_from":16,"seq":68719476760,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1024,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1048576,"data_stored":773871,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.432},{"interface":"front","average":{"1min":0.46500000000000002,"5min":0.46500000000000002,"15min":0.46500000000000002},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"last":0.33500000000000002}]},{"osd":2,"last update":"Tue May 14 03:34:36 2024","interfaces":[{"interface":"back","average":{"1min":0.443,"5min":0.443,"15min":0.443},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.48799999999999999},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.39400000000000002}]},{"osd":3,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.35599999999999998},{"interface":"front","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.41499999999999998}]},{"osd":4,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"last":0.38},{"interface":"front","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.504,"5min":0.504,"15min":0.504},"last":0.47399999999999998}]},{"osd":5,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.502},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.45800000000000002}]},{"osd":6,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.69399999999999995,"5min":0.69399999999999995,"15min":0.69399999999999995},"last":0.57799999999999996},{"interface":"front","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.51300000000000001}]},{"osd":7,"last update":"Tue May 14 03:35:08 2024","interfaces":[{"interface":"back","average":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.53400000000000003},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.56399999999999995}]}]},{"osd":1,"up_from":22,"seq":94489280536,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27472,"kb_used_data":452,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713584,"statfs":{"total":95990841344,"available":95962710016,"internally_reserved":0,"allocated":462848,"data_stored":186358,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.79900000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"last":0.752},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.30599999999999999,"5min":0.30599999999999999,"15min":0.30599999999999999},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.65600000000000003}]},{"osd":2,"last update":"Tue May 14 03:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.83499999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"last":0.78600000000000003}]},{"osd":3,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"min":{"1min":0.19800000000000001,"5min":0.19800000000000001,"15min":0.19800000000000001},"max":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"last":0.67700000000000005},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.63100000000000001}]},{"osd":4,"last update":"Tue May 14 03:34:43 2024","interfaces":[{"interface":"back","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.58199999999999996},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.86099999999999999,"5min":0.86099999999999999,"15min":0.86099999999999999},"last":0.72299999999999998}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"last":0.53000000000000003},{"interface":"front","average":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"last":0.48499999999999999}]},{"osd":6,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"last":0.70099999999999996},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.89300000000000002,"5min":0.89300000000000002,"15min":0.89300000000000002},"last":0.77000000000000002}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"last":0.55100000000000005},{"interface":"front","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.60899999999999999}]}]},{"osd":4,"up_from":25,"seq":107374182424,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":186077,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.28699999999999998},{"interface":"front","average":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"last":0.253}]},{"osd":1,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.877,"5min":0.877,"15min":0.877},"last":0.41299999999999998},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.38100000000000001}]},{"osd":2,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.39300000000000002},{"interface":"front","average":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.36099999999999999}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.83499999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"last":0.45800000000000002},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":0.80200000000000005,"5min":0.80200000000000005,"15min":0.80200000000000005},"last":0.44400000000000001}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"max":{"1min":0.81999999999999995,"5min":0.81999999999999995,"15min":0.81999999999999995},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"last":0.50600000000000001}]},{"osd":6,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.53500000000000003},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.71099999999999997,"5min":0.71099999999999997,"15min":0.71099999999999997},"last":0.49199999999999999}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"min":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.56200000000000006},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"last":0.54800000000000004}]}]},{"osd":6,"up_from":29,"seq":124554051606,"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":452,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713576,"statfs":{"total":95990841344,"available":95962701824,"internally_reserved":0,"allocated":462848,"data_stored":186358,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"last":0.28299999999999997},{"interface":"front","average":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.45400000000000001}]},{"osd":1,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.89000000000000001,"5min":0.89000000000000001,"15min":0.89000000000000001},"min":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"max":{"1min":7.0030000000000001,"5min":7.0030000000000001,"15min":7.0030000000000001},"last":0.51100000000000001},{"interface":"front","average":{"1min":0.877,"5min":0.877,"15min":0.877},"min":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":6.9859999999999998,"5min":6.9859999999999998,"15min":6.9859999999999998},"last":0.56399999999999995}]},{"osd":2,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.434,"5min":0.434,"15min":0.434},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.39400000000000002},{"interface":"front","average":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.67900000000000005,"5min":0.67900000000000005,"15min":0.67900000000000005},"last":0.41199999999999998}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":1.0169999999999999,"5min":1.0169999999999999,"15min":1.0169999999999999},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":9.0990000000000002,"5min":9.0990000000000002,"15min":9.0990000000000002},"last":0.57799999999999996},{"interface":"front","average":{"1min":1.04,"5min":1.04,"15min":1.04},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":8.8529999999999998,"5min":8.8529999999999998,"15min":8.8529999999999998},"last":0.61099999999999999}]},{"osd":4,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.32500000000000001,"5min":0.32500000000000001,"15min":0.32500000000000001},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.48899999999999999},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.34799999999999998}]},{"osd":5,"last update":"Tue May 14 03:34:59 2024","interfaces":[{"interface":"back","average":{"1min":1.3839999999999999,"5min":1.3839999999999999,"15min":1.3839999999999999},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":15.112,"5min":15.112,"15min":15.112},"last":0.64900000000000002},{"interface":"front","average":{"1min":1.038,"5min":1.038,"15min":1.038},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":8.9629999999999992,"5min":8.9629999999999992,"15min":8.9629999999999992},"last":0.59899999999999998}]},{"osd":7,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":1.3080000000000001,"5min":1.3080000000000001,"15min":1.3080000000000001},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":14.928000000000001,"5min":14.928000000000001,"15min":14.928000000000001},"last":0.68300000000000005},{"interface":"front","average":{"1min":1.0269999999999999,"5min":1.0269999999999999,"15min":1.0269999999999999},"min":{"1min":0.436,"5min":0.436,"15min":0.436},"max":{"1min":8.827,"5min":8.827,"15min":8.827},"last":0.55200000000000005}]}]},{"osd":3,"up_from":30,"seq":128849018902,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28052,"kb_used_data":1032,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713004,"statfs":{"total":95990841344,"available":95962116096,"internally_reserved":0,"allocated":1056768,"data_stored":776726,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.503},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.73999999999999999,"5min":0.73999999999999999,"15min":0.73999999999999999},"last":0.52000000000000002}]},{"osd":1,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"min":{"1min":0.216,"5min":0.216,"15min":0.216},"max":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.379},{"interface":"front","average":{"1min":0.33500000000000002,"5min":0.33500000000000002,"15min":0.33500000000000002},"min":{"1min":0.20799999999999999,"5min":0.20799999999999999,"15min":0.20799999999999999},"max":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"last":0.40500000000000003}]},{"osd":2,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.56999999999999995}]},{"osd":4,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.57999999999999996},{"interface":"front","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.55300000000000005}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.42999999999999999},{"interface":"front","average":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"min":{"1min":0.30199999999999999,"5min":0.30199999999999999,"15min":0.30199999999999999},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.47399999999999998}]},{"osd":6,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.58699999999999997},{"interface":"front","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.56399999999999995}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.45800000000000002},{"interface":"front","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.53200000000000003}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-05-14T03:35:25.717 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph pg dump --format=json 2024-05-14T03:35:25.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:25 smithi137 ceph-mon[46839]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:35:25.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:25.944 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:26.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:26 smithi096 ceph-mon[35980]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:26.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:26 smithi137 ceph-mon[46839]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:28.050 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:35:28.052 INFO:teuthology.orchestra.run.smithi096.stderr:dumped all 2024-05-14T03:35:28.788 INFO:teuthology.orchestra.run.smithi096.stdout:{"pg_ready":true,"pg_map":{"version":146,"stamp":"2024-05-14T03:35:26.173771+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":221500,"kb_used_data":5332,"kb_used_omap":12,"kb_used_meta":216051,"kb_avail":749706948,"statfs":{"total":767926730752,"available":767699914752,"internally_reserved":0,"allocated":5459968,"data_stored":3256858,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12743,"internal_metadata":221236793},"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.001958"},"pg_stats":[{"pgid":"1.0","version":"27'197","reported_seq":275,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-05-14T03:34:09.393107+0000","last_change":"2024-05-14T03:34:09.392843+0000","last_active":"2024-05-14T03:34:09.393107+0000","last_peered":"2024-05-14T03:34:09.393107+0000","last_clean":"2024-05-14T03:34:09.393107+0000","last_became_active":"2024-05-14T03:34:09.392486+0000","last_became_peered":"2024-05-14T03:34:09.392486+0000","last_unstale":"2024-05-14T03:34:09.393107+0000","last_undegraded":"2024-05-14T03:34:09.393107+0000","last_fullsized":"2024-05-14T03:34:09.393107+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-05-14T03:33:38.618944+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-05-14T03:33:38.618944+0000","last_clean_scrub_stamp":"2024-05-14T03:33:38.618944+0000","objects_scrubbed":0,"log_size":197,"log_dups_size":0,"ondisk_log_size":197,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-05-15T10:51:12.445615+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":156,"num_read_kb":136,"num_write":247,"num_write_kb":4504,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":197,"ondisk_log_size":197,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659154,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1028,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1052672,"data_stored":776445,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1589,"internal_metadata":27654603},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.97599999999999998,"5min":0.97599999999999998,"15min":0.97599999999999998},"last":0.504},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":1.591,"5min":1.591,"15min":1.591},"last":0.435}]},{"osd":1,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":1.1639999999999999,"5min":1.1639999999999999,"15min":1.1639999999999999},"last":0.40000000000000002},{"interface":"front","average":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"min":{"1min":0.247,"5min":0.247,"15min":0.247},"max":{"1min":1.5409999999999999,"5min":1.5409999999999999,"15min":1.5409999999999999},"last":0.27800000000000002}]},{"osd":2,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.94399999999999995,"5min":0.94399999999999995,"15min":0.94399999999999995},"last":0.44800000000000001},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.90900000000000003,"5min":0.90900000000000003,"15min":0.90900000000000003},"last":0.49199999999999999}]},{"osd":3,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":1.494,"5min":1.494,"15min":1.494},"last":0.318},{"interface":"front","average":{"1min":0.44,"5min":0.44,"15min":0.44},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":1.25,"5min":1.25,"15min":1.25},"last":0.53700000000000003}]},{"osd":4,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":1,"5min":1,"15min":1},"last":0.57699999999999996},{"interface":"front","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.88,"5min":0.88,"15min":0.88},"last":0.46300000000000002}]},{"osd":5,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.307,"5min":0.307,"15min":0.307},"max":{"1min":0.84299999999999997,"5min":0.84299999999999997,"15min":0.84299999999999997},"last":0.35199999999999998},{"interface":"front","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":1.5669999999999999,"5min":1.5669999999999999,"15min":1.5669999999999999},"last":0.38700000000000001}]},{"osd":6,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":1.6140000000000001,"5min":1.6140000000000001,"15min":1.6140000000000001},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"max":{"1min":1.0249999999999999,"5min":1.0249999999999999,"15min":1.0249999999999999},"last":0.55800000000000005}]}]},{"osd":5,"up_from":37,"seq":158913789973,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":186077,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.58099999999999996},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.61599999999999999}]},{"osd":1,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.52900000000000003,"5min":0.52900000000000003,"15min":0.52900000000000003},"last":0.56699999999999995},{"interface":"front","average":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"min":{"1min":0.24199999999999999,"5min":0.24199999999999999,"15min":0.24199999999999999},"max":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"last":0.47999999999999998}]},{"osd":2,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.51500000000000001,"5min":0.51500000000000001,"15min":0.51500000000000001},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.64400000000000002},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.78700000000000003,"5min":0.78700000000000003,"15min":0.78700000000000003},"last":0.55300000000000005}]},{"osd":3,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.26000000000000001,"5min":0.26000000000000001,"15min":0.26000000000000001},"max":{"1min":2.48,"5min":2.48,"15min":2.48},"last":0.45700000000000002},{"interface":"front","average":{"1min":0.376,"5min":0.376,"15min":0.376},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"last":0.49399999999999999}]},{"osd":4,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.52100000000000002,"5min":0.52100000000000002,"15min":0.52100000000000002},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.78200000000000003,"5min":0.78200000000000003,"15min":0.78200000000000003},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.69299999999999995}]},{"osd":6,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.379,"5min":0.379,"15min":0.379},"max":{"1min":0.80800000000000005,"5min":0.80800000000000005,"15min":0.80800000000000005},"last":0.68000000000000005},{"interface":"front","average":{"1min":0.57099999999999995,"5min":0.57099999999999995,"15min":0.57099999999999995},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.874,"5min":0.874,"15min":0.874},"last":0.63500000000000001}]},{"osd":7,"last update":"Tue May 14 03:35:09 2024","interfaces":[{"interface":"back","average":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.67200000000000004},{"interface":"front","average":{"1min":0.435,"5min":0.435,"15min":0.435},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.627,"5min":0.627,"15min":0.627},"last":0.65900000000000003}]}]},{"osd":2,"up_from":20,"seq":85899345946,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":184946,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:35 2024","interfaces":[{"interface":"back","average":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.371,"5min":0.371,"15min":0.371},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.39900000000000002}]},{"osd":1,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.73699999999999999,"5min":0.73699999999999999,"15min":0.73699999999999999},"last":0.53800000000000003},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.64300000000000002,"5min":0.64300000000000002,"15min":0.64300000000000002},"last":0.44700000000000001}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.48399999999999999},{"interface":"front","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.55200000000000005}]},{"osd":4,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.441,"5min":0.441,"15min":0.441},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"last":0.371},{"interface":"front","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.30399999999999999,"5min":0.30399999999999999,"15min":0.30399999999999999},"max":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"last":0.30499999999999999}]},{"osd":5,"last update":"Tue May 14 03:35:00 2024","interfaces":[{"interface":"back","average":{"1min":0.56999999999999995,"5min":0.56999999999999995,"15min":0.56999999999999995},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.46300000000000002},{"interface":"front","average":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"min":{"1min":0.40500000000000003,"5min":0.40500000000000003,"15min":0.40500000000000003},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.48899999999999999}]},{"osd":6,"last update":"Tue May 14 03:34:46 2024","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.35399999999999998,"5min":0.35399999999999998,"15min":0.35399999999999998},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.42799999999999999},{"interface":"front","average":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.50800000000000001}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.80200000000000005,"5min":0.80200000000000005,"15min":0.80200000000000005},"last":0.52600000000000002},{"interface":"front","average":{"1min":0.61399999999999999,"5min":0.61399999999999999,"15min":0.61399999999999999},"min":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"max":{"1min":0.78400000000000003,"5min":0.78400000000000003,"15min":0.78400000000000003},"last":0.56599999999999995}]}]},{"osd":0,"up_from":16,"seq":68719476761,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28044,"kb_used_data":1024,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713012,"statfs":{"total":95990841344,"available":95962124288,"internally_reserved":0,"allocated":1048576,"data_stored":773871,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":1,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.48099999999999998,"5min":0.48099999999999998,"15min":0.48099999999999998},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.42199999999999999},{"interface":"front","average":{"1min":0.46500000000000002,"5min":0.46500000000000002,"15min":0.46500000000000002},"min":{"1min":0.28899999999999998,"5min":0.28899999999999998,"15min":0.28899999999999998},"max":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"last":0.438}]},{"osd":2,"last update":"Tue May 14 03:34:36 2024","interfaces":[{"interface":"back","average":{"1min":0.443,"5min":0.443,"15min":0.443},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.29899999999999999},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"last":0.46600000000000003}]},{"osd":3,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.35299999999999998,"5min":0.35299999999999998,"15min":0.35299999999999998},"max":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"last":0.47699999999999998},{"interface":"front","average":{"1min":0.53900000000000003,"5min":0.53900000000000003,"15min":0.53900000000000003},"min":{"1min":0.38600000000000001,"5min":0.38600000000000001,"15min":0.38600000000000001},"max":{"1min":0.63600000000000001,"5min":0.63600000000000001,"15min":0.63600000000000001},"last":0.51500000000000001}]},{"osd":4,"last update":"Tue May 14 03:34:42 2024","interfaces":[{"interface":"back","average":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"last":0.35699999999999998},{"interface":"front","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.504,"5min":0.504,"15min":0.504},"last":0.40100000000000002}]},{"osd":5,"last update":"Tue May 14 03:34:58 2024","interfaces":[{"interface":"back","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.625,"5min":0.625,"15min":0.625},"last":0.45600000000000002},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.67300000000000004,"5min":0.67300000000000004,"15min":0.67300000000000004},"last":0.48599999999999999}]},{"osd":6,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.69399999999999995,"5min":0.69399999999999995,"15min":0.69399999999999995},"last":0.57099999999999995},{"interface":"front","average":{"1min":0.47599999999999998,"5min":0.47599999999999998,"15min":0.47599999999999998},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.64000000000000001,"5min":0.64000000000000001,"15min":0.64000000000000001},"last":0.54100000000000004}]},{"osd":7,"last update":"Tue May 14 03:35:08 2024","interfaces":[{"interface":"back","average":{"1min":0.57699999999999996,"5min":0.57699999999999996,"15min":0.57699999999999996},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":0.71199999999999997,"5min":0.71199999999999997,"15min":0.71199999999999997},"last":0.55000000000000004},{"interface":"front","average":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"min":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.502}]}]},{"osd":1,"up_from":22,"seq":94489280536,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27472,"kb_used_data":452,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713584,"statfs":{"total":95990841344,"available":95962710016,"internally_reserved":0,"allocated":462848,"data_stored":186358,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.79900000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"last":0.752},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.30599999999999999,"5min":0.30599999999999999,"15min":0.30599999999999999},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.65600000000000003}]},{"osd":2,"last update":"Tue May 14 03:34:38 2024","interfaces":[{"interface":"back","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.31900000000000001,"5min":0.31900000000000001,"15min":0.31900000000000001},"max":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.28799999999999998,"5min":0.28799999999999998,"15min":0.28799999999999998},"max":{"1min":0.83499999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"last":0.78600000000000003}]},{"osd":3,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"min":{"1min":0.19800000000000001,"5min":0.19800000000000001,"15min":0.19800000000000001},"max":{"1min":0.52300000000000002,"5min":0.52300000000000002,"15min":0.52300000000000002},"last":0.67700000000000005},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"last":0.63100000000000001}]},{"osd":4,"last update":"Tue May 14 03:34:43 2024","interfaces":[{"interface":"back","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.58199999999999996},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.86099999999999999,"5min":0.86099999999999999,"15min":0.86099999999999999},"last":0.72299999999999998}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.47799999999999998,"5min":0.47799999999999998,"15min":0.47799999999999998},"last":0.53000000000000003},{"interface":"front","average":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"last":0.48499999999999999}]},{"osd":6,"last update":"Tue May 14 03:34:49 2024","interfaces":[{"interface":"back","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.69699999999999995,"5min":0.69699999999999995,"15min":0.69699999999999995},"last":0.70099999999999996},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.89300000000000002,"5min":0.89300000000000002,"15min":0.89300000000000002},"last":0.77000000000000002}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.58999999999999997,"5min":0.58999999999999997,"15min":0.58999999999999997},"last":0.55100000000000005},{"interface":"front","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.67600000000000005,"5min":0.67600000000000005,"15min":0.67600000000000005},"last":0.60899999999999999}]}]},{"osd":4,"up_from":25,"seq":107374182424,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":448,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":458752,"data_stored":186077,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.28699999999999998},{"interface":"front","average":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"min":{"1min":0.23999999999999999,"5min":0.23999999999999999,"15min":0.23999999999999999},"max":{"1min":0.54900000000000004,"5min":0.54900000000000004,"15min":0.54900000000000004},"last":0.253}]},{"osd":1,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.27500000000000002,"5min":0.27500000000000002,"15min":0.27500000000000002},"max":{"1min":0.877,"5min":0.877,"15min":0.877},"last":0.41299999999999998},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.30299999999999999,"5min":0.30299999999999999,"15min":0.30299999999999999},"max":{"1min":0.76900000000000002,"5min":0.76900000000000002,"15min":0.76900000000000002},"last":0.38100000000000001}]},{"osd":2,"last update":"Tue May 14 03:34:41 2024","interfaces":[{"interface":"back","average":{"1min":0.44800000000000001,"5min":0.44800000000000001,"15min":0.44800000000000001},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.68999999999999995,"5min":0.68999999999999995,"15min":0.68999999999999995},"last":0.39300000000000002},{"interface":"front","average":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.36099999999999999}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.54100000000000004,"5min":0.54100000000000004,"15min":0.54100000000000004},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.83499999999999996,"5min":0.83499999999999996,"15min":0.83499999999999996},"last":0.45800000000000002},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":0.80200000000000005,"5min":0.80200000000000005,"15min":0.80200000000000005},"last":0.44400000000000001}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"min":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"max":{"1min":0.81999999999999995,"5min":0.81999999999999995,"15min":0.81999999999999995},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.57199999999999995,"5min":0.57199999999999995,"15min":0.57199999999999995},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"last":0.50600000000000001}]},{"osd":6,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.53500000000000003},{"interface":"front","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.71099999999999997,"5min":0.71099999999999997,"15min":0.71099999999999997},"last":0.49199999999999999}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.61799999999999999,"5min":0.61799999999999999,"15min":0.61799999999999999},"min":{"1min":0.46400000000000002,"5min":0.46400000000000002,"15min":0.46400000000000002},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.56200000000000006},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"last":0.54800000000000004}]}]},{"osd":6,"up_from":29,"seq":124554051607,"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":452,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713576,"statfs":{"total":95990841344,"available":95962701824,"internally_reserved":0,"allocated":462848,"data_stored":186358,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.373,"5min":0.373,"15min":0.373},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.51300000000000001,"5min":0.51300000000000001,"15min":0.51300000000000001},"last":0.34100000000000003},{"interface":"front","average":{"1min":0.44700000000000001,"5min":0.44700000000000001,"15min":0.44700000000000001},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.58899999999999997}]},{"osd":1,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.89000000000000001,"5min":0.89000000000000001,"15min":0.89000000000000001},"min":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"max":{"1min":7.0030000000000001,"5min":7.0030000000000001,"15min":7.0030000000000001},"last":0.41299999999999998},{"interface":"front","average":{"1min":0.877,"5min":0.877,"15min":0.877},"min":{"1min":0.45100000000000001,"5min":0.45100000000000001,"15min":0.45100000000000001},"max":{"1min":6.9859999999999998,"5min":6.9859999999999998,"15min":6.9859999999999998},"last":0.39900000000000002}]},{"osd":2,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.434,"5min":0.434,"15min":0.434},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.434},{"interface":"front","average":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.67900000000000005,"5min":0.67900000000000005,"15min":0.67900000000000005},"last":0.38600000000000001}]},{"osd":3,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":1.0169999999999999,"5min":1.0169999999999999,"15min":1.0169999999999999},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":9.0990000000000002,"5min":9.0990000000000002,"15min":9.0990000000000002},"last":0.45100000000000001},{"interface":"front","average":{"1min":1.04,"5min":1.04,"15min":1.04},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":8.8529999999999998,"5min":8.8529999999999998,"15min":8.8529999999999998},"last":0.46899999999999997}]},{"osd":4,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.497,"5min":0.497,"15min":0.497},"min":{"1min":0.32500000000000001,"5min":0.32500000000000001,"15min":0.32500000000000001},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.48699999999999999},{"interface":"front","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.55700000000000005}]},{"osd":5,"last update":"Tue May 14 03:34:59 2024","interfaces":[{"interface":"back","average":{"1min":1.3839999999999999,"5min":1.3839999999999999,"15min":1.3839999999999999},"min":{"1min":0.41799999999999998,"5min":0.41799999999999998,"15min":0.41799999999999998},"max":{"1min":15.112,"5min":15.112,"15min":15.112},"last":0.51600000000000001},{"interface":"front","average":{"1min":1.038,"5min":1.038,"15min":1.038},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":8.9629999999999992,"5min":8.9629999999999992,"15min":8.9629999999999992},"last":0.53400000000000003}]},{"osd":7,"last update":"Tue May 14 03:35:06 2024","interfaces":[{"interface":"back","average":{"1min":1.3080000000000001,"5min":1.3080000000000001,"15min":1.3080000000000001},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":14.928000000000001,"5min":14.928000000000001,"15min":14.928000000000001},"last":0.54700000000000004},{"interface":"front","average":{"1min":1.0269999999999999,"5min":1.0269999999999999,"15min":1.0269999999999999},"min":{"1min":0.436,"5min":0.436,"15min":0.436},"max":{"1min":8.827,"5min":8.827,"15min":8.827},"last":0.59999999999999998}]}]},{"osd":3,"up_from":30,"seq":128849018902,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28052,"kb_used_data":1032,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713004,"statfs":{"total":95990841344,"available":95962116096,"internally_reserved":0,"allocated":1056768,"data_stored":776726,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[{"osd":0,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.64200000000000002,"5min":0.64200000000000002,"15min":0.64200000000000002},"last":0.503},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.73999999999999999,"5min":0.73999999999999999,"15min":0.73999999999999999},"last":0.52000000000000002}]},{"osd":1,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"min":{"1min":0.216,"5min":0.216,"15min":0.216},"max":{"1min":0.45600000000000002,"5min":0.45600000000000002,"15min":0.45600000000000002},"last":0.379},{"interface":"front","average":{"1min":0.33500000000000002,"5min":0.33500000000000002,"15min":0.33500000000000002},"min":{"1min":0.20799999999999999,"5min":0.20799999999999999,"15min":0.20799999999999999},"max":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"last":0.40500000000000003}]},{"osd":2,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.51400000000000001,"5min":0.51400000000000001,"15min":0.51400000000000001},"min":{"1min":0.32400000000000001,"5min":0.32400000000000001,"15min":0.32400000000000001},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.72399999999999998,"5min":0.72399999999999998,"15min":0.72399999999999998},"last":0.56999999999999995}]},{"osd":4,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.57999999999999996},{"interface":"front","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.69199999999999995,"5min":0.69199999999999995,"15min":0.69199999999999995},"last":0.55300000000000005}]},{"osd":5,"last update":"Tue May 14 03:34:57 2024","interfaces":[{"interface":"back","average":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.59099999999999997,"5min":0.59099999999999997,"15min":0.59099999999999997},"last":0.42999999999999999},{"interface":"front","average":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"min":{"1min":0.30199999999999999,"5min":0.30199999999999999,"15min":0.30199999999999999},"max":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"last":0.47399999999999998}]},{"osd":6,"last update":"Tue May 14 03:34:47 2024","interfaces":[{"interface":"back","average":{"1min":0.53200000000000003,"5min":0.53200000000000003,"15min":0.53200000000000003},"min":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.58699999999999997},{"interface":"front","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.56399999999999995}]},{"osd":7,"last update":"Tue May 14 03:35:07 2024","interfaces":[{"interface":"back","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.45800000000000002},{"interface":"front","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.63700000000000001,"5min":0.63700000000000001,"15min":0.63700000000000001},"last":0.53200000000000003}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-05-14T03:35:28.790 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-05-14T03:35:28.790 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-05-14T03:35:28.790 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-05-14T03:35:28.790 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph health --format=json 2024-05-14T03:35:29.017 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:29.521 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:29 smithi096 ceph-mon[35980]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:35:29.521 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:29 smithi096 ceph-mon[35980]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:29 smithi137 ceph-mon[46839]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:35:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:29 smithi137 ceph-mon[46839]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:31.304 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:35:31.304 INFO:teuthology.orchestra.run.smithi096.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-05-14T03:35:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:31 smithi096 ceph-mon[35980]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:31 smithi137 ceph-mon[46839]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:32.151 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-05-14T03:35:32.151 INFO:tasks.cephadm:Setup complete, yielding 2024-05-14T03:35:32.151 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:35:32.162 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:35:32.163 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch status' 2024-05-14T03:35:32.392 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:32.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:32 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/2398108025' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-05-14T03:35:32.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:32 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/2398108025' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-05-14T03:35:33.528 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:33 smithi096 ceph-mon[35980]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:33 smithi137 ceph-mon[46839]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:34.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:34 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:35:34.587 INFO:teuthology.orchestra.run.smithi096.stdout:Backend: cephadm 2024-05-14T03:35:34.587 INFO:teuthology.orchestra.run.smithi096.stdout:Available: Yes 2024-05-14T03:35:34.587 INFO:teuthology.orchestra.run.smithi096.stdout:Paused: No 2024-05-14T03:35:34.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:34 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:35:35.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:35 smithi096 ceph-mon[35980]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:35.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:35.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:35 smithi137 ceph-mon[46839]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:35.996 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch ps' 2024-05-14T03:35:36.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:36 smithi096 ceph-mon[35980]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:36.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:36 smithi137 ceph-mon[46839]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:37.191 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:37.537 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:37 smithi096 ceph-mon[35980]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:37 smithi137 ceph-mon[46839]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:39.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:39 smithi096 ceph-mon[35980]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:39 smithi137 ceph-mon[46839]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:40.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:alertmanager.smithi096 smithi096 *:9093,9094 running (3m) 89s ago 4m 24.7M - 0.25.0 c8568f914cd2 db4823b898cf 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter.smithi096 smithi096 running (4m) 89s ago 4m 7046k - 18.2.2-1343-g2965081f a04a73ffe079 3eb962b306fc 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter.smithi137 smithi137 running (3m) 5s ago 3m 7260k - 18.2.2-1343-g2965081f a04a73ffe079 50ac233d4960 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:crash.smithi096 smithi096 running (4m) 89s ago 4m 6656k - 18.2.2-1343-g2965081f a04a73ffe079 0104fcdef06b 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:crash.smithi137 smithi137 running (3m) 5s ago 3m 6651k - 18.2.2-1343-g2965081f a04a73ffe079 49da15ec70dc 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:grafana.smithi096 smithi096 *:3000 running (3m) 89s ago 4m 80.7M - 9.4.7 954c08fa6188 77e9db2afc68 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:mgr.smithi096.iktflt smithi096 *:9283,8765,8443 running (6m) 89s ago 6m 493M - 18.2.2-1343-g2965081f a04a73ffe079 6584ad9a62f0 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:mgr.smithi137.outbui smithi137 *:8443,9283,8765 running (3m) 5s ago 3m 449M - 18.2.2-1343-g2965081f a04a73ffe079 69f8c00df24f 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:mon.smithi096 smithi096 running (6m) 89s ago 6m 45.3M 2048M 18.2.2-1343-g2965081f a04a73ffe079 1489c10df133 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:mon.smithi137 smithi137 running (3m) 5s ago 3m 44.8M 2048M 18.2.2-1343-g2965081f a04a73ffe079 cc675accbfd1 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter.smithi096 smithi096 *:9100 running (4m) 89s ago 4m 17.1M - 1.5.0 0da6a335fe13 8e75c6f387ca 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter.smithi137 smithi137 *:9100 running (3m) 5s ago 3m 18.7M - 1.5.0 0da6a335fe13 2b3798401d11 2024-05-14T03:35:40.711 INFO:teuthology.orchestra.run.smithi096.stdout:osd.0 smithi137 running (2m) 5s ago 2m 42.3M 3736M 18.2.2-1343-g2965081f a04a73ffe079 a71f1cbb2442 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.1 smithi096 running (2m) 89s ago 2m 40.0M 2968M 18.2.2-1343-g2965081f a04a73ffe079 aec8834cb121 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.2 smithi137 running (2m) 5s ago 2m 47.9M 3736M 18.2.2-1343-g2965081f a04a73ffe079 321f205bd9b6 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.3 smithi096 running (119s) 89s ago 118s 34.9M 2968M 18.2.2-1343-g2965081f a04a73ffe079 b90b15fd5471 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.4 smithi137 running (2m) 5s ago 2m 44.1M 3736M 18.2.2-1343-g2965081f a04a73ffe079 db710c6cb3e5 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.5 smithi096 running (111s) 89s ago 111s 38.1M 2968M 18.2.2-1343-g2965081f a04a73ffe079 1bcf3c173114 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.6 smithi137 running (2m) 5s ago 2m 37.1M 3736M 18.2.2-1343-g2965081f a04a73ffe079 4b35953fcb8c 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:osd.7 smithi096 running (101s) 89s ago 101s 23.3M 2968M 18.2.2-1343-g2965081f a04a73ffe079 a90aac338a17 2024-05-14T03:35:40.712 INFO:teuthology.orchestra.run.smithi096.stdout:prometheus.smithi096 smithi096 *:9095 running (2m) 89s ago 4m 44.9M - 2.43.0 a07b618ecd1d 4dd3677d4b28 2024-05-14T03:35:41.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:41 smithi096 ceph-mon[35980]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:41.593 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch ls' 2024-05-14T03:35:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:41 smithi137 ceph-mon[46839]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:41.848 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:42.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:42 smithi096 ceph-mon[35980]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:42.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:42.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:42 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:42.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:42 smithi137 ceph-mon[46839]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:42.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:42.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:42 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:43.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:43 smithi096 ceph-mon[35980]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:43.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:43 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:35:43.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:43 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:35:43.451 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:43 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:43.452 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:43 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:35:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:43 smithi137 ceph-mon[46839]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:43 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:35:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:43 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:35:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:43 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:43 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:35:43.914 INFO:teuthology.orchestra.run.smithi096.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-05-14T03:35:43.914 INFO:teuthology.orchestra.run.smithi096.stdout:alertmanager ?:9093,9094 1/1 2s ago 5m count:1 2024-05-14T03:35:43.914 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter 2/2 8s ago 5m * 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:crash 2/2 8s ago 5m * 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:grafana ?:3000 1/1 2s ago 5m count:1 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:mgr 2/2 8s ago 5m count:2 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:mon 2/2 8s ago 4m smithi096:172.21.15.96=smithi096;smithi137:172.21.15.137=smithi137;count:2 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter ?:9100 2/2 8s ago 5m * 2024-05-14T03:35:43.915 INFO:teuthology.orchestra.run.smithi096.stdout:osd.all-available-devices 8 8s ago 3m * 2024-05-14T03:35:43.916 INFO:teuthology.orchestra.run.smithi096.stdout:prometheus ?:9095 1/1 2s ago 5m count:1 2024-05-14T03:35:44.663 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch host ls' 2024-05-14T03:35:44.892 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:45 smithi096 ceph-mon[35980]: from='client.14558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:45.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:45 smithi096 ceph-mon[35980]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:45.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:45 smithi137 ceph-mon[46839]: from='client.14558 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:45.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:45 smithi137 ceph-mon[46839]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:46.829 INFO:teuthology.orchestra.run.smithi096.stdout:HOST ADDR LABELS STATUS 2024-05-14T03:35:46.829 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 172.21.15.96 2024-05-14T03:35:46.829 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 172.21.15.137 2024-05-14T03:35:46.829 INFO:teuthology.orchestra.run.smithi096.stdout:2 hosts in cluster 2024-05-14T03:35:47.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:47 smithi096 ceph-mon[35980]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:47.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:47 smithi137 ceph-mon[46839]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:47.699 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch device ls' 2024-05-14T03:35:47.924 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:48.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:48 smithi096 ceph-mon[35980]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:48.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:48 smithi137 ceph-mon[46839]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:49.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:49 smithi096 ceph-mon[35980]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:49 smithi137 ceph-mon[46839]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400NH400BGN 372G No 92s ago Has a FileSystem, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme1n1 ssd Linux_41636239f02ab0c0a1eb 89.4G No 92s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme2n1 ssd Linux_00f3eeca7bb5ddf7234b 89.4G No 92s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme3n1 ssd Linux_1619d508578d0a79fa30 89.4G No 92s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme4n1 ssd Linux_b9aed1e6e30df8b9bd6e 89.4G No 92s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233004A400BGN 372G No 99s ago Has a FileSystem, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme1n1 ssd Linux_d0c5bb8f8119628d4a2c 89.4G No 99s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.823 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme2n1 ssd Linux_2279e8ea5a301dd5033f 89.4G No 99s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.824 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme3n1 ssd Linux_894fe7013a77521ae429 89.4G No 99s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:49.824 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme4n1 ssd Linux_4e8584f09df680f22345 89.4G No 99s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:50.613 INFO:teuthology.run_tasks:Running task vip... 2024-05-14T03:35:50.624 INFO:tasks.vip:Allocating static IPs for each host... 2024-05-14T03:35:50.624 INFO:tasks.vip:peername 172.21.15.96 2024-05-14T03:35:50.627 INFO:tasks.vip:172.21.15.96 in 172.21.0.0/20, pos 3935 2024-05-14T03:35:50.631 INFO:tasks.vip:smithi096.front.sepia.ceph.com static 10.0.15.96, vnet 10.0.0.0/16 2024-05-14T03:35:50.631 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-05-14T03:35:50.632 DEBUG:teuthology.orchestra.run.smithi096:> sudo ip route ls 2024-05-14T03:35:50.660 INFO:teuthology.orchestra.run.smithi096.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.96 metric 100 2024-05-14T03:35:50.661 INFO:teuthology.orchestra.run.smithi096.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.96 metric 100 2024-05-14T03:35:50.662 INFO:tasks.vip:Configuring 10.0.15.96 on smithi096.front.sepia.ceph.com iface enp3s0f1... 2024-05-14T03:35:50.662 DEBUG:teuthology.orchestra.run.smithi096:> sudo ip addr add 10.0.15.96/16 dev enp3s0f1 2024-05-14T03:35:50.729 INFO:tasks.vip:peername 172.21.15.137 2024-05-14T03:35:50.732 INFO:tasks.vip:172.21.15.137 in 172.21.0.0/20, pos 3976 2024-05-14T03:35:50.736 INFO:tasks.vip:smithi137.front.sepia.ceph.com static 10.0.15.137, vnet 10.0.0.0/16 2024-05-14T03:35:50.737 DEBUG:teuthology.orchestra.run.smithi137:> sudo ip route ls 2024-05-14T03:35:50.773 INFO:teuthology.orchestra.run.smithi137.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.137 metric 100 2024-05-14T03:35:50.773 INFO:teuthology.orchestra.run.smithi137.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.137 metric 100 2024-05-14T03:35:50.774 INFO:tasks.vip:Configuring 10.0.15.137 on smithi137.front.sepia.ceph.com iface enp3s0f1... 2024-05-14T03:35:50.774 DEBUG:teuthology.orchestra.run.smithi137:> sudo ip addr add 10.0.15.137/16 dev enp3s0f1 2024-05-14T03:35:50.846 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:35:50.856 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:35:50.856 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-05-14T03:35:51.078 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:51.566 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:51 smithi096 ceph-mon[35980]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:51.566 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:51 smithi096 ceph-mon[35980]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:51 smithi137 ceph-mon[46839]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:51 smithi137 ceph-mon[46839]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:53.306 INFO:teuthology.orchestra.run.smithi096.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-05-14T03:35:53.306 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400NH400BGN 372G No 95s ago Has a FileSystem, LVM detected 2024-05-14T03:35:53.306 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme1n1 ssd Linux_41636239f02ab0c0a1eb 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.306 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme2n1 ssd Linux_00f3eeca7bb5ddf7234b 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme3n1 ssd Linux_1619d508578d0a79fa30 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme4n1 ssd Linux_b9aed1e6e30df8b9bd6e 89.4G No 95s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233004A400BGN 372G No 102s ago Has a FileSystem, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme1n1 ssd Linux_d0c5bb8f8119628d4a2c 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme2n1 ssd Linux_2279e8ea5a301dd5033f 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme3n1 ssd Linux_894fe7013a77521ae429 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.307 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme4n1 ssd Linux_4e8584f09df680f22345 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:35:53.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:53 smithi096 ceph-mon[35980]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:53.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:53 smithi137 ceph-mon[46839]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:54.066 INFO:teuthology.run_tasks:Running task vip.exec... 2024-05-14T03:35:54.077 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:35:54.078 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-05-14T03:35:54.111 INFO:teuthology.orchestra.run.smithi096.stderr:+ systemctl stop nfs-server 2024-05-14T03:35:54.118 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi137.front.sepia.ceph.com 2024-05-14T03:35:54.119 DEBUG:teuthology.orchestra.run.smithi137:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-05-14T03:35:54.146 INFO:teuthology.orchestra.run.smithi137.stderr:+ systemctl stop nfs-server 2024-05-14T03:35:54.152 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:35:54.166 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:35:54.166 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-05-14T03:35:54.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:54 smithi096 ceph-mon[35980]: from='client.14570 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:54.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:35:54.590 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:54 smithi137 ceph-mon[46839]: from='client.14570 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:54.591 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:35:54.877 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:55 smithi096 ceph-mon[35980]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:55.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:55 smithi137 ceph-mon[46839]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:55.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:35:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:56 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:56.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:56 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:57.346 INFO:teuthology.orchestra.run.smithi096.stdout:Scheduled rgw.foorgw update... 2024-05-14T03:35:57.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:57 smithi137 ceph-mon[46839]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:57.774 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:57 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:57.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:57 smithi096 ceph-mon[35980]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:57.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:57 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:35:58.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:58 smithi137 ceph-mon[46839]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:58.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:58 smithi137 ceph-mon[46839]: Saving service rgw.foorgw spec with placement count:2 2024-05-14T03:35:58.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:58 smithi096 ceph-mon[35980]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:35:58.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:58 smithi096 ceph-mon[35980]: Saving service rgw.foorgw spec with placement count:2 2024-05-14T03:35:58.974 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.96/16' 2024-05-14T03:35:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:35:59 smithi137 ceph-mon[46839]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:35:59.769 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:35:59.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:35:59 smithi096 ceph-mon[35980]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:01.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:01.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:00 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:01.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:00 smithi096 ceph-mon[35980]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:01.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:00 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:01.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:00 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:01.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:00 smithi137 ceph-mon[46839]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:02 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:02.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:02 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:03.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:03 smithi096 ceph-mon[35980]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:03.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-05-14T03:36:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:03 smithi137 ceph-mon[46839]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:03.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]: dispatch 2024-05-14T03:36:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:04 smithi096 ceph-mon[35980]: from='client.14578 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.96/16", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:36:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-05-14T03:36:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:04 smithi096 ceph-mon[35980]: osdmap e46: 8 total, 8 up, 8 in 2024-05-14T03:36:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:04 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-05-14T03:36:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:04 smithi137 ceph-mon[46839]: from='client.14578 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.96/16", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:36:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-05-14T03:36:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:04 smithi137 ceph-mon[46839]: osdmap e46: 8 total, 8 up, 8 in 2024-05-14T03:36:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:04 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-05-14T03:36:05.216 INFO:teuthology.run_tasks:Running task vip.exec... 2024-05-14T03:36:05.229 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:36:05.229 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-05-14T03:36:05.260 INFO:teuthology.orchestra.run.smithi096.stderr:+ dnf install -y python3-boto3 2024-05-14T03:36:05.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: pgmap v166: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:05.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:05.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-05-14T03:36:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: osdmap e47: 8 total, 8 up, 8 in 2024-05-14T03:36:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: Saving service nfs.foo spec with placement count:1 2024-05-14T03:36:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: Saving service ingress.nfs.foo spec with placement count:2 2024-05-14T03:36:05.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:05 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: pgmap v166: 33 pgs: 32 unknown, 1 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: osdmap e47: 8 total, 8 up, 8 in 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: Saving service nfs.foo spec with placement count:1 2024-05-14T03:36:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:05.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: Saving service ingress.nfs.foo spec with placement count:2 2024-05-14T03:36:05.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:05 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:06.044 INFO:teuthology.orchestra.run.smithi096.stdout:Last metadata expiration check: 0:09:14 ago on Tue 14 May 2024 03:26:51 AM UTC. 2024-05-14T03:36:06.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:06 smithi137 ceph-mon[46839]: osdmap e48: 8 total, 8 up, 8 in 2024-05-14T03:36:06.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:06 smithi096 ceph-mon[35980]: osdmap e48: 8 total, 8 up, 8 in 2024-05-14T03:36:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: pgmap v169: 33 pgs: 19 unknown, 14 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: Cluster is now healthy 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: mgrmap e20: smithi096.iktflt(active, since 4m), standbys: smithi137.outbui 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi137.izljsq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:07.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi137.izljsq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:07.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:07 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:07.711 INFO:teuthology.orchestra.run.smithi096.stdout:Dependencies resolved. 2024-05-14T03:36:07.712 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:36:07.712 INFO:teuthology.orchestra.run.smithi096.stdout: Package Arch Version Repository Size 2024-05-14T03:36:07.712 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:36:07.712 INFO:teuthology.orchestra.run.smithi096.stdout:Installing: 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: python3-boto3 noarch 1.15.15-1.el8 epel 152 k 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout:Installing dependencies: 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: python3-botocore noarch 1.18.15-1.el8 epel 4.5 M 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jmespath noarch 0.9.0-11.el8 appstream 45 k 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: python3-s3transfer noarch 0.3.4-1.el8 epel 108 k 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction Summary 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout:================================================================================ 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout:Install 4 Packages 2024-05-14T03:36:07.713 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:07.714 INFO:teuthology.orchestra.run.smithi096.stdout:Total download size: 4.8 M 2024-05-14T03:36:07.714 INFO:teuthology.orchestra.run.smithi096.stdout:Installed size: 49 M 2024-05-14T03:36:07.714 INFO:teuthology.orchestra.run.smithi096.stdout:Downloading Packages: 2024-05-14T03:36:07.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: pgmap v169: 33 pgs: 19 unknown, 14 active+clean; 577 KiB data, 216 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:07.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:07.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: Cluster is now healthy 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: mgrmap e20: smithi096.iktflt(active, since 4m), standbys: smithi137.outbui 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi137.izljsq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi137.izljsq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:07.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:07.847 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:07 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:08.228 INFO:teuthology.orchestra.run.smithi096.stdout:(1/4): python3-jmespath-0.9.0-11.el8.noarch.rpm 314 kB/s | 45 kB 00:00 2024-05-14T03:36:08.545 INFO:teuthology.orchestra.run.smithi096.stdout:(2/4): python3-boto3-1.15.15-1.el8.noarch.rpm 331 kB/s | 152 kB 00:00 2024-05-14T03:36:08.662 INFO:teuthology.orchestra.run.smithi096.stdout:(3/4): python3-s3transfer-0.3.4-1.el8.noarch.rp 249 kB/s | 108 kB 00:00 2024-05-14T03:36:08.664 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:08 smithi137 ceph-mon[46839]: Deploying daemon rgw.foorgw.smithi137.izljsq on smithi137 2024-05-14T03:36:08.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:08 smithi096 ceph-mon[35980]: Deploying daemon rgw.foorgw.smithi137.izljsq on smithi137 2024-05-14T03:36:09.237 INFO:teuthology.orchestra.run.smithi096.stdout:(4/4): python3-botocore-1.18.15-1.el8.noarch.rp 3.9 MB/s | 4.5 MB 00:01 2024-05-14T03:36:09.238 INFO:teuthology.orchestra.run.smithi096.stdout:-------------------------------------------------------------------------------- 2024-05-14T03:36:09.238 INFO:teuthology.orchestra.run.smithi096.stdout:Total 3.1 MB/s | 4.8 MB 00:01 2024-05-14T03:36:09.249 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction check 2024-05-14T03:36:09.258 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction check succeeded. 2024-05-14T03:36:09.258 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction test 2024-05-14T03:36:09.354 INFO:teuthology.orchestra.run.smithi096.stdout:Transaction test succeeded. 2024-05-14T03:36:09.357 INFO:teuthology.orchestra.run.smithi096.stdout:Running transaction 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: pgmap v170: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi096.vvrlsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi096.vvrlsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:09 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: pgmap v170: 33 pgs: 33 active+clean; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi096.vvrlsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi096.vvrlsk", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:09 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:09.743 INFO:teuthology.orchestra.run.smithi096.stdout: Preparing : 1/1 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: Deploying daemon rgw.foorgw.smithi096.vvrlsk on smithi096 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: osdmap e49: 8 total, 8 up, 8 in 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-05-14T03:36:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:10 smithi137 ceph-mon[46839]: osdmap e50: 8 total, 8 up, 8 in 2024-05-14T03:36:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: Deploying daemon rgw.foorgw.smithi096.vvrlsk on smithi096 2024-05-14T03:36:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: osdmap e49: 8 total, 8 up, 8 in 2024-05-14T03:36:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-05-14T03:36:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-05-14T03:36:10.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:10.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-05-14T03:36:10.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:10 smithi096 ceph-mon[35980]: osdmap e50: 8 total, 8 up, 8 in 2024-05-14T03:36:11.280 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-jmespath-0.9.0-11.el8.noarch 1/4 2024-05-14T03:36:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:11 smithi096 ceph-mon[35980]: pgmap v172: 65 pgs: 5 creating+peering, 33 active+clean, 27 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:11 smithi096 ceph-mon[35980]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:11 smithi096 ceph-mon[35980]: osdmap e51: 8 total, 8 up, 8 in 2024-05-14T03:36:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:11 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-05-14T03:36:11.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:11 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-05-14T03:36:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:11 smithi137 ceph-mon[46839]: pgmap v172: 65 pgs: 5 creating+peering, 33 active+clean, 27 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:36:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:11 smithi137 ceph-mon[46839]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:11 smithi137 ceph-mon[46839]: osdmap e51: 8 total, 8 up, 8 in 2024-05-14T03:36:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:11 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-05-14T03:36:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:11 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-05-14T03:36:11.832 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-botocore-1.18.15-1.el8.noarch 2/4 2024-05-14T03:36:12.200 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2024-05-14T03:36:12.460 INFO:teuthology.orchestra.run.smithi096.stdout: Installing : python3-boto3-1.15.15-1.el8.noarch 4/4 2024-05-14T03:36:12.726 INFO:teuthology.orchestra.run.smithi096.stdout: Running scriptlet: python3-boto3-1.15.15-1.el8.noarch 4/4 2024-05-14T03:36:12.727 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-jmespath-0.9.0-11.el8.noarch 1/4 2024-05-14T03:36:12.727 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-boto3-1.15.15-1.el8.noarch 2/4 2024-05-14T03:36:12.727 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-botocore-1.18.15-1.el8.noarch 3/4 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout: Verifying : python3-s3transfer-0.3.4-1.el8.noarch 4/4 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout:Installed: 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout: python3-boto3-1.15.15-1.el8.noarch python3-botocore-1.18.15-1.el8.noarch 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout: python3-jmespath-0.9.0-11.el8.noarch python3-s3transfer-0.3.4-1.el8.noarch 2024-05-14T03:36:13.113 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:13.114 INFO:teuthology.orchestra.run.smithi096.stdout:Complete! 2024-05-14T03:36:13.256 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:36:13.325 INFO:teuthology.orchestra.run.smithi096.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-05-14T03:36:13.570 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: pgmap v175: 97 pgs: 9 creating+peering, 53 active+clean, 35 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 0 op/s 2024-05-14T03:36:13.570 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: Saving service rgw.foorgw spec with placement count:2 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: Creating key for client.nfs.foo.0.0.smithi096.mcbfeh 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-05-14T03:36:13.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: osdmap e52: 8 total, 8 up, 8 in 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: Rados config object exists: conf-nfs.foo 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: Creating key for client.nfs.foo.0.0.smithi096.mcbfeh-rgw 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:13.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:13 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: pgmap v175: 97 pgs: 9 creating+peering, 53 active+clean, 35 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 0 op/s 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: Saving service rgw.foorgw spec with placement count:2 2024-05-14T03:36:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: Creating key for client.nfs.foo.0.0.smithi096.mcbfeh 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-05-14T03:36:13.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: osdmap e52: 8 total, 8 up, 8 in 2024-05-14T03:36:13.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: Rados config object exists: conf-nfs.foo 2024-05-14T03:36:13.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: Creating key for client.nfs.foo.0.0.smithi096.mcbfeh-rgw 2024-05-14T03:36:13.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-05-14T03:36:13.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-05-14T03:36:13.693 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:13 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:36:14.556 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring fsid 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:36:14.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: Bind address in nfs.foo.0.0.smithi096.mcbfeh's ganesha conf is defaulting to empty 2024-05-14T03:36:14.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: Deploying daemon nfs.foo.0.0.smithi096.mcbfeh on smithi096 2024-05-14T03:36:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: osdmap e53: 8 total, 8 up, 8 in 2024-05-14T03:36:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:14 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.621 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: Bind address in nfs.foo.0.0.smithi096.mcbfeh's ganesha conf is defaulting to empty 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: Deploying daemon nfs.foo.0.0.smithi096.mcbfeh on smithi096 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: osdmap e53: 8 total, 8 up, 8 in 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3182714398' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:14 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-05-14T03:36:14.772 INFO:teuthology.orchestra.run.smithi096.stderr:Using ceph image with id 'a04a73ffe079' and tag '2965081fb1a343a09e00ceeede998525f5c6cb5e' created on 2024-05-13 18:32:17 +0000 UTC 2024-05-14T03:36:14.772 INFO:teuthology.orchestra.run.smithi096.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:0764a18419358e118953c7a2137c56896dd1b4a53ba86e3e915181d824ff62f1 2024-05-14T03:36:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:15 smithi137 ceph-mon[46839]: pgmap v178: 129 pgs: 9 creating+peering, 71 active+clean, 49 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-05-14T03:36:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:15 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-05-14T03:36:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:15 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-05-14T03:36:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:15 smithi137 ceph-mon[46839]: osdmap e54: 8 total, 8 up, 8 in 2024-05-14T03:36:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:15.731 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:15 smithi096 ceph-mon[35980]: pgmap v178: 129 pgs: 9 creating+peering, 71 active+clean, 49 unknown; 577 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-05-14T03:36:15.731 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:15 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-05-14T03:36:15.731 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:15 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-05-14T03:36:15.731 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:15 smithi096 ceph-mon[35980]: osdmap e54: 8 total, 8 up, 8 in 2024-05-14T03:36:15.731 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:16.685 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:16 smithi096 ceph-mon[35980]: osdmap e55: 8 total, 8 up, 8 in 2024-05-14T03:36:16.685 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:16 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:16.685 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:16 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3674744047' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:16.685 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:16 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:16 smithi137 ceph-mon[46839]: osdmap e55: 8 total, 8 up, 8 in 2024-05-14T03:36:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:16 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:16 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3674744047' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:16.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:16 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: pgmap v181: 161 pgs: 13 creating+peering, 103 active+clean, 45 unknown; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1023 B/s wr, 2 op/s 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: osdmap e56: 8 total, 8 up, 8 in 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='client.? 172.21.15.137:0/3674744047' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.442 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:17 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: pgmap v181: 161 pgs: 13 creating+peering, 103 active+clean, 45 unknown; 578 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1023 B/s wr, 2 op/s 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: osdmap e56: 8 total, 8 up, 8 in 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='client.? 172.21.15.137:0/3674744047' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:17.573 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:17 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:18.060 INFO:teuthology.run_tasks:Running task python... 2024-05-14T03:36:18.071 INFO:tasks.python:Running python on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:36:18.071 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-05-14T03:36:18.071 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-05-14T03:36:18.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:18 smithi096 ceph-mon[35980]: Deploying daemon haproxy.nfs.foo.smithi096.mioyvk on smithi096 2024-05-14T03:36:18.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:18 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:18.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:18 smithi096 ceph-mon[35980]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:18.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:18 smithi096 ceph-mon[35980]: osdmap e57: 8 total, 8 up, 8 in 2024-05-14T03:36:18.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:18 smithi096 ceph-mon[35980]: pgmap v184: 161 pgs: 18 creating+peering, 140 active+clean, 3 unknown; 579 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 101 KiB/s rd, 4.7 KiB/s wr, 194 op/s 2024-05-14T03:36:18.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:18 smithi137 ceph-mon[46839]: Deploying daemon haproxy.nfs.foo.smithi096.mioyvk on smithi096 2024-05-14T03:36:18.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:18 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:18.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:18 smithi137 ceph-mon[46839]: from='client.? ' entity='client.rgw.foorgw.smithi137.izljsq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:18.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:18 smithi137 ceph-mon[46839]: osdmap e57: 8 total, 8 up, 8 in 2024-05-14T03:36:18.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:18 smithi137 ceph-mon[46839]: pgmap v184: 161 pgs: 18 creating+peering, 140 active+clean, 3 unknown; 579 KiB data, 217 MiB used, 715 GiB / 715 GiB avail; 101 KiB/s rd, 4.7 KiB/s wr, 194 op/s 2024-05-14T03:36:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:19 smithi096 ceph-mon[35980]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:19 smithi096 ceph-mon[35980]: Cluster is now healthy 2024-05-14T03:36:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:19 smithi096 ceph-mon[35980]: osdmap e58: 8 total, 8 up, 8 in 2024-05-14T03:36:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:19 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-05-14T03:36:19.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:19 smithi137 ceph-mon[46839]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:19.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:19 smithi137 ceph-mon[46839]: Cluster is now healthy 2024-05-14T03:36:19.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:19 smithi137 ceph-mon[46839]: osdmap e58: 8 total, 8 up, 8 in 2024-05-14T03:36:19.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:19 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-05-14T03:36:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:20 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-05-14T03:36:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:20 smithi096 ceph-mon[35980]: osdmap e59: 8 total, 8 up, 8 in 2024-05-14T03:36:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:20 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:20.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:20 smithi096 ceph-mon[35980]: pgmap v187: 193 pgs: 24 creating+peering, 143 active+clean, 26 unknown; 580 KiB data, 222 MiB used, 715 GiB / 715 GiB avail; 184 KiB/s rd, 6.0 KiB/s wr, 352 op/s 2024-05-14T03:36:20.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:20 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:20.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:20 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-05-14T03:36:20.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:20 smithi137 ceph-mon[46839]: osdmap e59: 8 total, 8 up, 8 in 2024-05-14T03:36:20.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:20 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-05-14T03:36:20.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:20 smithi137 ceph-mon[46839]: pgmap v187: 193 pgs: 24 creating+peering, 143 active+clean, 26 unknown; 580 KiB data, 222 MiB used, 715 GiB / 715 GiB avail; 184 KiB/s rd, 6.0 KiB/s wr, 352 op/s 2024-05-14T03:36:20.942 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:20 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:21.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:21 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:21.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:21 smithi137 ceph-mon[46839]: osdmap e60: 8 total, 8 up, 8 in 2024-05-14T03:36:22.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:21 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/1639622243' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-05-14T03:36:22.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:21 smithi096 ceph-mon[35980]: osdmap e60: 8 total, 8 up, 8 in 2024-05-14T03:36:22.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:22 smithi137 ceph-mon[46839]: osdmap e61: 8 total, 8 up, 8 in 2024-05-14T03:36:22.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:22 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-05-14T03:36:22.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:22 smithi137 ceph-mon[46839]: pgmap v190: 225 pgs: 12 creating+peering, 178 active+clean, 35 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 221 KiB/s rd, 6.5 KiB/s wr, 426 op/s 2024-05-14T03:36:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:22 smithi096 ceph-mon[35980]: osdmap e61: 8 total, 8 up, 8 in 2024-05-14T03:36:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:22 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-05-14T03:36:23.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:22 smithi096 ceph-mon[35980]: pgmap v190: 225 pgs: 12 creating+peering, 178 active+clean, 35 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 221 KiB/s rd, 6.5 KiB/s wr, 426 op/s 2024-05-14T03:36:23.675 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:36:23.685 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:36:23.685 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-05-14T03:36:23.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:23 smithi137 ceph-mon[46839]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:23.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:23 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-05-14T03:36:23.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:23 smithi137 ceph-mon[46839]: osdmap e62: 8 total, 8 up, 8 in 2024-05-14T03:36:23.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:23 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-05-14T03:36:24.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:23 smithi096 ceph-mon[35980]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-05-14T03:36:24.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:23 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-05-14T03:36:24.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:23 smithi096 ceph-mon[35980]: osdmap e62: 8 total, 8 up, 8 in 2024-05-14T03:36:24.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:23 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]: dispatch 2024-05-14T03:36:24.475 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:24.725 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:24 smithi096 ceph-mon[35980]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-05-14T03:36:24.725 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:24 smithi096 ceph-mon[35980]: osdmap e63: 8 total, 8 up, 8 in 2024-05-14T03:36:24.725 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:24 smithi096 ceph-mon[35980]: pgmap v193: 225 pgs: 12 creating+peering, 195 active+clean, 18 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 158 KiB/s rd, 5.0 KiB/s wr, 307 op/s 2024-05-14T03:36:24.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:24 smithi137 ceph-mon[46839]: from='client.? 172.21.15.96:0/3874419951' entity='client.rgw.foorgw.smithi096.vvrlsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-05-14T03:36:24.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:24 smithi137 ceph-mon[46839]: osdmap e63: 8 total, 8 up, 8 in 2024-05-14T03:36:24.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:24 smithi137 ceph-mon[46839]: pgmap v193: 225 pgs: 12 creating+peering, 195 active+clean, 18 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 158 KiB/s rd, 5.0 KiB/s wr, 307 op/s 2024-05-14T03:36:25.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:25 smithi096 ceph-mon[35980]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:25.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:25 smithi096 ceph-mon[35980]: Cluster is now healthy 2024-05-14T03:36:25.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:25.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:25 smithi137 ceph-mon[46839]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-05-14T03:36:25.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:25 smithi137 ceph-mon[46839]: Cluster is now healthy 2024-05-14T03:36:25.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:26.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:26 smithi096 ceph-mon[35980]: pgmap v194: 225 pgs: 6 creating+peering, 211 active+clean, 8 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 114 KiB/s rd, 3.6 KiB/s wr, 221 op/s 2024-05-14T03:36:26.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:26 smithi137 ceph-mon[46839]: pgmap v194: 225 pgs: 6 creating+peering, 211 active+clean, 8 unknown; 582 KiB data, 226 MiB used, 715 GiB / 715 GiB avail; 114 KiB/s rd, 3.6 KiB/s wr, 221 op/s 2024-05-14T03:36:27.109 INFO:teuthology.orchestra.run.smithi096.stdout:{ 2024-05-14T03:36:27.109 INFO:teuthology.orchestra.run.smithi096.stdout: "bind": "/foouser", 2024-05-14T03:36:27.109 INFO:teuthology.orchestra.run.smithi096.stdout: "cluster": "foo", 2024-05-14T03:36:27.109 INFO:teuthology.orchestra.run.smithi096.stdout: "mode": "RW", 2024-05-14T03:36:27.109 INFO:teuthology.orchestra.run.smithi096.stdout: "path": "/", 2024-05-14T03:36:27.110 INFO:teuthology.orchestra.run.smithi096.stdout: "squash": "none" 2024-05-14T03:36:27.110 INFO:teuthology.orchestra.run.smithi096.stdout:} 2024-05-14T03:36:27.943 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-05-14T03:36:27.955 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-05-14T03:36:27.955 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:28.187 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:28.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:28 smithi096 ceph-mon[35980]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:36:28.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:28 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:28 smithi096 ceph-mon[35980]: Deploying daemon haproxy.nfs.foo.smithi137.unknhk on smithi137 2024-05-14T03:36:28.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:28 smithi137 ceph-mon[46839]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:36:28.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:28 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:28.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:28 smithi137 ceph-mon[46839]: Deploying daemon haproxy.nfs.foo.smithi137.unknhk on smithi137 2024-05-14T03:36:29.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:29 smithi137 ceph-mon[46839]: pgmap v195: 225 pgs: 225 active+clean; 582 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 40 KiB/s rd, 1.5 KiB/s wr, 78 op/s 2024-05-14T03:36:29.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:29 smithi096 ceph-mon[35980]: pgmap v195: 225 pgs: 225 active+clean; 582 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 40 KiB/s rd, 1.5 KiB/s wr, 78 op/s 2024-05-14T03:36:30.368 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:30.369 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:35:55.363546Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:35:55.363642Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:27.175159Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:35:55.363765Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:35:55.363824Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:35:55.363705Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:35:55.363883Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "ports": [8800], "running": 0, "size": 2}}] 2024-05-14T03:36:31.124 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:31.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:31 smithi096 ceph-mon[35980]: pgmap v196: 225 pgs: 225 active+clean; 582 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 15 KiB/s rd, 511 B/s wr, 29 op/s 2024-05-14T03:36:31.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:31 smithi096 ceph-mon[35980]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:31.690 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:31 smithi137 ceph-mon[46839]: pgmap v196: 225 pgs: 225 active+clean; 582 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 15 KiB/s rd, 511 B/s wr, 29 op/s 2024-05-14T03:36:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:31 smithi137 ceph-mon[46839]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:32.125 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:32.369 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:33.519 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:33 smithi096 ceph-mon[35980]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 17 KiB/s rd, 642 B/s wr, 31 op/s 2024-05-14T03:36:33.557 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:33 smithi137 ceph-mon[46839]: pgmap v197: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 17 KiB/s rd, 642 B/s wr, 31 op/s 2024-05-14T03:36:34.427 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:34.427 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:35:55.363546Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:35:55.363642Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:34.358838Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:35:55.363765Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:35:55.363824Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:35:55.363705Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:35:55.363883Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "ports": [8800], "running": 0, "size": 2}}] 2024-05-14T03:36:35.128 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:35.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 484 B/s wr, 12 op/s 2024-05-14T03:36:35.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: 10.0.31.96 is in 10.0.0.0/16 on smithi096 interface enp3s0f1 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: 10.0.31.96 is in 10.0.0.0/16 on smithi137 interface enp3s0f1 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: Deploying daemon keepalived.nfs.foo.smithi096.lcktoq on smithi096 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:35 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: pgmap v198: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 7.5 KiB/s rd, 484 B/s wr, 12 op/s 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: 10.0.31.96 is in 10.0.0.0/16 on smithi096 interface enp3s0f1 2024-05-14T03:36:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: 10.0.31.96 is in 10.0.0.0/16 on smithi137 interface enp3s0f1 2024-05-14T03:36:35.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: Deploying daemon keepalived.nfs.foo.smithi096.lcktoq on smithi096 2024-05-14T03:36:35.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='client.14666 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:35.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:35 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:36.129 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:36.358 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:37.570 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:37 smithi096 ceph-mon[35980]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.6 KiB/s rd, 426 B/s wr, 11 op/s 2024-05-14T03:36:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:37 smithi137 ceph-mon[46839]: pgmap v199: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.6 KiB/s rd, 426 B/s wr, 11 op/s 2024-05-14T03:36:39.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:39 smithi096 ceph-mon[35980]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.6 KiB/s rd, 426 B/s wr, 10 op/s 2024-05-14T03:36:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:39 smithi137 ceph-mon[46839]: pgmap v200: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 6.6 KiB/s rd, 426 B/s wr, 10 op/s 2024-05-14T03:36:40.557 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:40.557 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:35:55.363546Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:35:55.363642Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:34.358838Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:35:55.363765Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:35:55.363824Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:35:55.363705Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:35:55.363883Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "ports": [8800], "running": 0, "size": 2}}] 2024-05-14T03:36:40.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]: dispatch 2024-05-14T03:36:40.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]: dispatch 2024-05-14T03:36:40.580 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]: dispatch 2024-05-14T03:36:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]: dispatch 2024-05-14T03:36:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:41.565 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:41 smithi096 ceph-mon[35980]: pgmap v201: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 170 B/s wr, 6 op/s 2024-05-14T03:36:41.565 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-05-14T03:36:41.565 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:41 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-05-14T03:36:41.565 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:41 smithi096 ceph-mon[35980]: osdmap e64: 8 total, 8 up, 8 in 2024-05-14T03:36:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:41 smithi137 ceph-mon[46839]: pgmap v201: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 170 B/s wr, 6 op/s 2024-05-14T03:36:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.17", "id": [4, 0]}]': finished 2024-05-14T03:36:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:41 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-05-14T03:36:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:41 smithi137 ceph-mon[46839]: osdmap e64: 8 total, 8 up, 8 in 2024-05-14T03:36:42.503 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:42 smithi096 ceph-mon[35980]: from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:42.503 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:42 smithi096 ceph-mon[35980]: osdmap e65: 8 total, 8 up, 8 in 2024-05-14T03:36:42.504 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:42.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:42 smithi137 ceph-mon[46839]: from='client.14670 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:42.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:42 smithi137 ceph-mon[46839]: osdmap e65: 8 total, 8 up, 8 in 2024-05-14T03:36:43.506 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:43.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:43 smithi096 ceph-mon[35980]: pgmap v204: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:43.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:43 smithi137 ceph-mon[46839]: pgmap v204: 225 pgs: 225 active+clean; 583 KiB data, 235 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:36:43.992 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: 10.0.31.96 is in 10.0.0.0/16 on smithi137 interface enp3s0f1 2024-05-14T03:36:45.346 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: 10.0.31.96 is in 10.0.0.0/16 on smithi096 interface enp3s0f1 2024-05-14T03:36:45.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: Deploying daemon keepalived.nfs.foo.smithi137.zxevwi on smithi137 2024-05-14T03:36:45.347 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:45 smithi096 ceph-mon[35980]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: 10.0.31.96 is in 10.0.0.0/16 on smithi137 interface enp3s0f1 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: 10.0.31.96 is in 10.0.0.0/16 on smithi096 interface enp3s0f1 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: Deploying daemon keepalived.nfs.foo.smithi137.zxevwi on smithi137 2024-05-14T03:36:45.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:45 smithi137 ceph-mon[46839]: pgmap v205: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:45.975 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:45.975 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:35:55.363546Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:35:55.363642Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:44.051806Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:35:55.363765Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:35:55.363824Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:35:55.363705Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:35:55.363883Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "ports": [8800], "running": 0, "size": 2}}] 2024-05-14T03:36:46.712 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:47.509 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:47 smithi137 ceph-mon[46839]: from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:47.509 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:47 smithi137 ceph-mon[46839]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:47.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:47 smithi096 ceph-mon[35980]: from='client.14674 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:47.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:47 smithi096 ceph-mon[35980]: pgmap v206: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:47.714 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:47.963 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:49.520 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:49 smithi137 ceph-mon[46839]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:49.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:49 smithi096 ceph-mon[35980]: pgmap v207: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-05-14T03:36:50.114 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:50.114 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:35:55.363546Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:35:55.363642Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:44.051806Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:35:55.363765Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:35:55.363824Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:35:55.363705Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:35:55.363883Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "ports": [8800], "running": 0, "size": 2}}] 2024-05-14T03:36:50.865 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='client.14678 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: pgmap v208: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:36:51.866 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:36:53.564 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:36:53.787 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:53 smithi096 ceph-mon[35980]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 188 B/s rd, 188 B/s wr, 0 op/s 2024-05-14T03:36:53.941 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:53 smithi137 ceph-mon[46839]: pgmap v209: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 188 B/s rd, 188 B/s wr, 0 op/s 2024-05-14T03:36:55.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:55.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:54 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:55.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:54 smithi096 ceph-mon[35980]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:36:55.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:55.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:54 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:55.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:54 smithi137 ceph-mon[46839]: pgmap v210: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:36:56.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:56.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:55 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:36:56.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:55 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:36:57.091 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:56 smithi096 ceph-mon[35980]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:36:57.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:56 smithi137 ceph-mon[46839]: pgmap v211: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:36:58.084 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:36:58.084 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:36:01.327779Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:36:01.327607Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:36:01.327665Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:36:01.327836Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:50.540597Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "last_refresh": "2024-05-14T03:36:53.959458Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:36:01.327529Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:36:01.327444Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:36:16.824906Z 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-05-14T03:36:04.375819Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:36:01.327722Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:36:01.327950Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:36:01.327894Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "last_refresh": "2024-05-14T03:36:53.959400Z", "ports": [8800], "running": 1, "size": 2}}] 2024-05-14T03:36:59.029 INFO:tasks.cephadm:nfs.foo has 0/1 2024-05-14T03:36:59.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:59 smithi096 ceph-mon[35980]: from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:59.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:36:59 smithi096 ceph-mon[35980]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:36:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:59 smithi137 ceph-mon[46839]: from='client.14682 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:36:59.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:36:59 smithi137 ceph-mon[46839]: pgmap v212: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:00.030 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:37:00.723 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:01.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:01 smithi096 ceph-mon[35980]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:01.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:01 smithi137 ceph-mon[46839]: pgmap v213: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:03.436 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:37:03.437 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:37:02.180920Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:36:53.958812Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:36:53.958910Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:37:02.181051Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:50.540597Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "last_refresh": "2024-05-14T03:36:53.959458Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:36:53.959034Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:36:53.959093Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:37:03.137813Z 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-05-14T03:36:04.375819Z", "last_refresh": "2024-05-14T03:37:02.182023Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:36:53.958974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:36:53.959152Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:37:02.181180Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "last_refresh": "2024-05-14T03:36:53.959400Z", "ports": [8800], "running": 2, "size": 2}}] 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:03.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:03 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.466 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: pgmap v214: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:03.467 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:03 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:04.274 INFO:tasks.cephadm:nfs.foo has 1/1 2024-05-14T03:37:04.274 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-05-14T03:37:04.286 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-05-14T03:37:04.286 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- ceph orch ls -f json 2024-05-14T03:37:04.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:04 smithi096 ceph-mon[35980]: Checking dashboard <-> RGW credentials 2024-05-14T03:37:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:04 smithi096 ceph-mon[35980]: Reconfiguring prometheus.smithi096 (dependencies changed)... 2024-05-14T03:37:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:04 smithi096 ceph-mon[35980]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:37:04.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:04 smithi096 ceph-mon[35980]: Reconfiguring daemon prometheus.smithi096 on smithi096 2024-05-14T03:37:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:04 smithi137 ceph-mon[46839]: Checking dashboard <-> RGW credentials 2024-05-14T03:37:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:04 smithi137 ceph-mon[46839]: Reconfiguring prometheus.smithi096 (dependencies changed)... 2024-05-14T03:37:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:04 smithi137 ceph-mon[46839]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:37:04.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:04 smithi137 ceph-mon[46839]: Reconfiguring daemon prometheus.smithi096 on smithi096 2024-05-14T03:37:05.500 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:05 smithi096 ceph-mon[35980]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-05-14T03:37:05.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:05 smithi137 ceph-mon[46839]: pgmap v215: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-05-14T03:37:06.686 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:07.571 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:07 smithi096 ceph-mon[35980]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-05-14T03:37:07.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:07 smithi137 ceph-mon[46839]: pgmap v216: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2024-05-14T03:37:09.432 INFO:teuthology.orchestra.run.smithi096.stdout: 2024-05-14T03:37:09.433 INFO:teuthology.orchestra.run.smithi096.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-05-14T03:30:10.548642Z", "last_refresh": "2024-05-14T03:37:02.180920Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:50.761070Z 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-05-14T03:30:04.025458Z", "last_refresh": "2024-05-14T03:36:53.958812Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:31:54.142581Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-05-14T03:30:02.417900Z", "last_refresh": "2024-05-14T03:36:53.958910Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-05-14T03:30:07.778718Z", "last_refresh": "2024-05-14T03:37:02.181051Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:50.540597Z 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.96/16"}, "status": {"created": "2024-05-14T03:36:04.380504Z", "last_refresh": "2024-05-14T03:36:53.959458Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.96/16"}}, {"events": ["2024-05-14T03:32:01.914767Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-05-14T03:30:01.020828Z", "last_refresh": "2024-05-14T03:36:53.959034Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:11.962011Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi096:172.21.15.96=smithi096", "smithi137:172.21.15.137=smithi137"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-05-14T03:30:57.213255Z", "last_refresh": "2024-05-14T03:36:53.959093Z", "running": 2, "size": 2}}, {"events": ["2024-05-14T03:37:03.137813Z 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-05-14T03:36:04.375819Z", "last_refresh": "2024-05-14T03:37:02.182023Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:31:59.130764Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-05-14T03:30:09.022823Z", "last_refresh": "2024-05-14T03:36:53.958974Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-05-14T03:32:20.936077Z 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-05-14T03:32:20.931562Z", "last_refresh": "2024-05-14T03:36:53.959152Z", "running": 8, "size": 8}}, {"events": ["2024-05-14T03:32:11.966959Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-05-14T03:30:06.010875Z", "last_refresh": "2024-05-14T03:37:02.181180Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-05-14T03:36:12.282778Z 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-05-14T03:36:12.277714Z", "last_refresh": "2024-05-14T03:36:53.959400Z", "ports": [8800], "running": 2, "size": 2}}] 2024-05-14T03:37:09.593 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:09 smithi096 ceph-mon[35980]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:09.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:09 smithi137 ceph-mon[46839]: pgmap v217: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:10.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:10 smithi096 ceph-mon[35980]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:37:10.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:10 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:10.616 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-05-14T03:37:10.616 INFO:teuthology.run_tasks:Running task vip.exec... 2024-05-14T03:37:10.627 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:37:10.627 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-05-14T03:37:10.664 INFO:teuthology.orchestra.run.smithi096.stderr:+ mkdir /mnt/foo 2024-05-14T03:37:10.670 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-05-14T03:37:10.690 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:10 smithi137 ceph-mon[46839]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-05-14T03:37:10.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:10 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:10.741 INFO:teuthology.orchestra.run.smithi096.stderr:+ sleep 5 2024-05-14T03:37:11.306 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:11 smithi096 ceph-mon[35980]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:11.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:11 smithi137 ceph-mon[46839]: pgmap v218: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:37:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:12 smithi137 ceph-mon[46839]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:37:12.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:12 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:37:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:37:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:12 smithi096 ceph-mon[35980]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-05-14T03:37:12.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:12 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:37:13.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:13 smithi137 ceph-mon[46839]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:13.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:13 smithi096 ceph-mon[35980]: pgmap v219: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:15 smithi137 ceph-mon[46839]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:15.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:15 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:15.742 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:15 smithi096 ceph-mon[35980]: pgmap v220: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.3 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:15.743 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:15.743 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:15 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:15.744 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.96:/foouser /mnt/foo' 2024-05-14T03:37:15.813 INFO:teuthology.orchestra.run.smithi096.stderr:+ mount -t nfs 10.0.31.96:/foouser /mnt/foo 2024-05-14T03:37:16.516 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2024-05-14T03:37:16.587 INFO:teuthology.orchestra.run.smithi096.stderr:+ test -d /mnt/foo/foobucket 2024-05-14T03:37:16.592 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-05-14T03:37:16.659 INFO:teuthology.orchestra.run.smithi096.stderr:+ find /mnt/foo -ls 2024-05-14T03:37:16.664 INFO:teuthology.orchestra.run.smithi096.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 May 14 03:36 /mnt/foo 2024-05-14T03:37:16.664 INFO:teuthology.orchestra.run.smithi096.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 May 14 03:36 /mnt/foo/foobucket 2024-05-14T03:37:16.664 INFO:teuthology.orchestra.run.smithi096.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 May 14 03:36 /mnt/foo/foobucket/myobject 2024-05-14T03:37:16.666 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2024-05-14T03:37:16.731 INFO:teuthology.orchestra.run.smithi096.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2024-05-14T03:37:16.734 INFO:teuthology.orchestra.run.smithi096.stdout:thebody 2024-05-14T03:37:16.736 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2024-05-14T03:37:16.802 INFO:teuthology.orchestra.run.smithi096.stderr:+ echo test 2024-05-14T03:37:16.816 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-05-14T03:37:16.881 INFO:teuthology.orchestra.run.smithi096.stderr:+ sync 2024-05-14T03:37:17.614 INFO:teuthology.run_tasks:Running task python... 2024-05-14T03:37:17.626 INFO:tasks.python:Running python on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:37:17.626 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-05-14T03:37:17.627 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-05-14T03:37:17.686 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:17 smithi096 ceph-mon[35980]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:17.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:17 smithi137 ceph-mon[46839]: pgmap v221: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-05-14T03:37:17.918 INFO:teuthology.orchestra.run.smithi096.stdout:b'test\n' 2024-05-14T03:37:17.955 INFO:teuthology.run_tasks:Running task vip.exec... 2024-05-14T03:37:17.965 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:37:17.965 DEBUG:teuthology.orchestra.run.smithi096:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-05-14T03:37:17.992 INFO:teuthology.orchestra.run.smithi096.stderr:+ umount /mnt/foo 2024-05-14T03:37:18.017 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:37:18.027 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:37:18.028 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph nfs export rm foo /foouser' 2024-05-14T03:37:18.814 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:19.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:19 smithi137 ceph-mon[46839]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 170 B/s wr, 3 op/s 2024-05-14T03:37:19.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:19 smithi096 ceph-mon[35980]: pgmap v222: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.4 KiB/s rd, 170 B/s wr, 3 op/s 2024-05-14T03:37:21.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:21 smithi137 ceph-mon[46839]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 6.4 KiB/s rd, 426 B/s wr, 7 op/s 2024-05-14T03:37:21.846 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:21 smithi096 ceph-mon[35980]: pgmap v223: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 6.4 KiB/s rd, 426 B/s wr, 7 op/s 2024-05-14T03:37:22.858 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-05-14T03:37:23.089 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: Checking dashboard <-> RGW credentials 2024-05-14T03:37:23.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:23.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:22 smithi096 ceph-mon[35980]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 511 B/s wr, 12 op/s 2024-05-14T03:37:23.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='client.14736 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:23.191 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: Checking dashboard <-> RGW credentials 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:23.192 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:23.193 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:22 smithi137 ceph-mon[46839]: pgmap v224: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 511 B/s wr, 12 op/s 2024-05-14T03:37:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:25 smithi096 ceph-mon[35980]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.9 KiB/s rd, 511 B/s wr, 12 op/s 2024-05-14T03:37:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:25.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:25.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:25 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:37:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:25 smithi137 ceph-mon[46839]: pgmap v225: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.9 KiB/s rd, 511 B/s wr, 12 op/s 2024-05-14T03:37:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:25.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:25 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-05-14T03:37:25.992 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-05-14T03:37:26.005 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:37:26.005 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-05-14T03:37:26.553 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:26 smithi137 ceph-mon[46839]: from='client.14768 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:26.553 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:26 smithi137 ceph-mon[46839]: Remove service ingress.nfs.foo 2024-05-14T03:37:26.553 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:26 smithi137 ceph-mon[46839]: Remove service nfs.foo 2024-05-14T03:37:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:26 smithi096 ceph-mon[35980]: from='client.14768 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:26 smithi096 ceph-mon[35980]: Remove service ingress.nfs.foo 2024-05-14T03:37:26.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:26 smithi096 ceph-mon[35980]: Remove service nfs.foo 2024-05-14T03:37:26.715 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:27.529 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:27 smithi137 ceph-mon[46839]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-05-14T03:37:27.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:27 smithi096 ceph-mon[35980]: pgmap v226: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-05-14T03:37:28.627 INFO:teuthology.orchestra.run.smithi096.stdout:167 167 2024-05-14T03:37:29.340 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch status' 2024-05-14T03:37:29.574 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:29 smithi096 ceph-mon[35980]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-05-14T03:37:29.574 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:29.574 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:29 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:29 smithi137 ceph-mon[46839]: pgmap v227: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-05-14T03:37:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:29.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:29 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:30.826 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:31.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:31 smithi096 ceph-mon[35980]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-05-14T03:37:31.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:31 smithi137 ceph-mon[46839]: pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 511 B/s wr, 10 op/s 2024-05-14T03:37:33.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:33 smithi096 ceph-mon[35980]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 85 B/s wr, 6 op/s 2024-05-14T03:37:33.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:33 smithi137 ceph-mon[46839]: pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 85 B/s wr, 6 op/s 2024-05-14T03:37:34.435 INFO:teuthology.orchestra.run.smithi096.stdout:Backend: cephadm 2024-05-14T03:37:34.435 INFO:teuthology.orchestra.run.smithi096.stdout:Available: Yes 2024-05-14T03:37:34.435 INFO:teuthology.orchestra.run.smithi096.stdout:Paused: No 2024-05-14T03:37:35.372 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch ps' 2024-05-14T03:37:35.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:35 smithi096 ceph-mon[35980]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 0 B/s wr, 1 op/s 2024-05-14T03:37:35.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:35 smithi096 ceph-mon[35980]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:35 smithi137 ceph-mon[46839]: pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 0 B/s wr, 1 op/s 2024-05-14T03:37:35.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:35 smithi137 ceph-mon[46839]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:35.947 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:37.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:37 smithi096 ceph-mon[35980]: pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 1 op/s 2024-05-14T03:37:37.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:37 smithi137 ceph-mon[46839]: pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 1 op/s 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:alertmanager.smithi096 smithi096 *:9093,9094 running (5m) 1s ago 6m 26.8M - 0.25.0 c8568f914cd2 db4823b898cf 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter.smithi096 smithi096 running (6m) 1s ago 6m 7444k - 18.2.2-1343-g2965081f a04a73ffe079 3eb962b306fc 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter.smithi137 smithi137 running (5m) 10s ago 5m 7444k - 18.2.2-1343-g2965081f a04a73ffe079 50ac233d4960 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:crash.smithi096 smithi096 running (6m) 1s ago 6m 6656k - 18.2.2-1343-g2965081f a04a73ffe079 0104fcdef06b 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:crash.smithi137 smithi137 running (5m) 10s ago 5m 6651k - 18.2.2-1343-g2965081f a04a73ffe079 49da15ec70dc 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:grafana.smithi096 smithi096 *:3000 running (5m) 1s ago 6m 86.9M - 9.4.7 954c08fa6188 77e9db2afc68 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:haproxy.nfs.foo.smithi096.mioyvk smithi096 *:2049,9049 running (73s) 1s ago 72s 8590k - 2.3.17-d1c9119 e85424b0d443 6bf83dac1e0f 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:haproxy.nfs.foo.smithi137.unknhk smithi137 *:2049,9049 running (65s) 10s ago 65s 14.5M - 2.3.17-d1c9119 e85424b0d443 30c11f78422a 2024-05-14T03:37:39.534 INFO:teuthology.orchestra.run.smithi096.stdout:keepalived.nfs.foo.smithi096.lcktoq smithi096 running (56s) 1s ago 55s 1765k - 2.2.4 4a3a1ff181d9 2ec259fc5c49 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:keepalived.nfs.foo.smithi137.zxevwi smithi137 running (49s) 10s ago 49s 1770k - 2.2.4 4a3a1ff181d9 e0dab20aca24 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:mgr.smithi096.iktflt smithi096 *:9283,8765,8443 running (8m) 1s ago 8m 512M - 18.2.2-1343-g2965081f a04a73ffe079 6584ad9a62f0 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:mgr.smithi137.outbui smithi137 *:8443,9283,8765 running (5m) 10s ago 5m 450M - 18.2.2-1343-g2965081f a04a73ffe079 69f8c00df24f 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:mon.smithi096 smithi096 running (8m) 1s ago 8m 49.0M 2048M 18.2.2-1343-g2965081f a04a73ffe079 1489c10df133 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:mon.smithi137 smithi137 running (5m) 10s ago 5m 41.8M 2048M 18.2.2-1343-g2965081f a04a73ffe079 cc675accbfd1 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:nfs.foo.0.0.smithi096.mcbfeh smithi096 *:12049 running (83s) 1s ago 82s 103M - 5.5 a04a73ffe079 a4d284063b51 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter.smithi096 smithi096 *:9100 running (6m) 1s ago 6m 16.9M - 1.5.0 0da6a335fe13 8e75c6f387ca 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter.smithi137 smithi137 *:9100 running (5m) 10s ago 5m 18.9M - 1.5.0 0da6a335fe13 2b3798401d11 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.0 smithi137 running (4m) 10s ago 4m 55.1M 3736M 18.2.2-1343-g2965081f a04a73ffe079 a71f1cbb2442 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.1 smithi096 running (4m) 1s ago 4m 50.0M 2968M 18.2.2-1343-g2965081f a04a73ffe079 aec8834cb121 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.2 smithi137 running (4m) 10s ago 4m 58.8M 3736M 18.2.2-1343-g2965081f a04a73ffe079 321f205bd9b6 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.3 smithi096 running (3m) 1s ago 3m 50.2M 2968M 18.2.2-1343-g2965081f a04a73ffe079 b90b15fd5471 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.4 smithi137 running (4m) 10s ago 4m 57.5M 3736M 18.2.2-1343-g2965081f a04a73ffe079 db710c6cb3e5 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.5 smithi096 running (3m) 1s ago 3m 54.1M 2968M 18.2.2-1343-g2965081f a04a73ffe079 1bcf3c173114 2024-05-14T03:37:39.535 INFO:teuthology.orchestra.run.smithi096.stdout:osd.6 smithi137 running (4m) 10s ago 3m 48.3M 3736M 18.2.2-1343-g2965081f a04a73ffe079 4b35953fcb8c 2024-05-14T03:37:39.536 INFO:teuthology.orchestra.run.smithi096.stdout:osd.7 smithi096 running (3m) 1s ago 3m 56.3M 2968M 18.2.2-1343-g2965081f a04a73ffe079 a90aac338a17 2024-05-14T03:37:39.536 INFO:teuthology.orchestra.run.smithi096.stdout:prometheus.smithi096 smithi096 *:9095 running (28s) 1s ago 6m 41.3M - 2.43.0 a07b618ecd1d 1669e2d1f89d 2024-05-14T03:37:39.536 INFO:teuthology.orchestra.run.smithi096.stdout:rgw.foorgw.smithi096.vvrlsk smithi096 *:8800 running (88s) 1s ago 87s 75.8M - 18.2.2-1343-g2965081f a04a73ffe079 ce6414b0e0fc 2024-05-14T03:37:39.536 INFO:teuthology.orchestra.run.smithi096.stdout:rgw.foorgw.smithi137.izljsq smithi137 *:8800 running (91s) 10s ago 90s 77.5M - 18.2.2-1343-g2965081f a04a73ffe079 cad43fba8df9 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:39.560 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.561 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:39.561 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: Removing orphan daemon nfs.foo.0.0.smithi096.mcbfeh... 2024-05-14T03:37:39.561 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:39 smithi096 ceph-mon[35980]: Removing daemon nfs.foo.0.0.smithi096.mcbfeh from smithi096 -- ports [12049] 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-05-14T03:37:39.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: Removing orphan daemon nfs.foo.0.0.smithi096.mcbfeh... 2024-05-14T03:37:39.692 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:39 smithi137 ceph-mon[46839]: Removing daemon nfs.foo.0.0.smithi096.mcbfeh from smithi096 -- ports [12049] 2024-05-14T03:37:40.350 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch ls' 2024-05-14T03:37:40.585 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:40.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:40 smithi096 ceph-mon[35980]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:40.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:40 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:40 smithi137 ceph-mon[46839]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:40.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:40 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-05-14T03:37:41.540 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:41 smithi096 ceph-mon[35980]: pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:37:41.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:41 smithi137 ceph-mon[46839]: pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:alertmanager ?:9093,9094 1/1 4s ago 7m count:1 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:ceph-exporter 2/2 13s ago 7m * 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:crash 2/2 13s ago 7m * 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:grafana ?:3000 1/1 4s ago 7m count:1 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:ingress.nfs.foo 10.0.31.96:2049,9049 4/4 98s count:2 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:mgr 2/2 13s ago 7m count:2 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:mon 2/2 13s ago 6m smithi096:172.21.15.96=smithi096;smithi137:172.21.15.137=smithi137;count:2 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:nfs.foo ?:12049 1/1 98s count:1 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:node-exporter ?:9100 2/2 13s ago 7m * 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:osd.all-available-devices 8 13s ago 5m * 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:prometheus ?:9095 1/1 4s ago 7m count:1 2024-05-14T03:37:42.733 INFO:teuthology.orchestra.run.smithi096.stdout:rgw.foorgw ?:8800 2/2 13s ago 90s count:2 2024-05-14T03:37:43.441 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:43 smithi137 ceph-mon[46839]: pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:43.519 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:43 smithi096 ceph-mon[35980]: pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:43.539 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch host ls' 2024-05-14T03:37:43.772 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:44.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:44 smithi096 ceph-mon[35980]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:44.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:44 smithi137 ceph-mon[46839]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:45.345 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:45 smithi096 ceph-mon[35980]: pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:45.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:45 smithi137 ceph-mon[46839]: pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:45.888 INFO:teuthology.orchestra.run.smithi096.stdout:HOST ADDR LABELS STATUS 2024-05-14T03:37:45.888 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 172.21.15.96 2024-05-14T03:37:45.888 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 172.21.15.137 2024-05-14T03:37:45.888 INFO:teuthology.orchestra.run.smithi096.stdout:2 hosts in cluster 2024-05-14T03:37:46.703 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch device ls' 2024-05-14T03:37:46.934 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:47.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:47 smithi096 ceph-mon[35980]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:47.572 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:47 smithi096 ceph-mon[35980]: pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:47.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:47 smithi137 ceph-mon[46839]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:47.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:47 smithi137 ceph-mon[46839]: pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400NH400BGN 372G No 102s ago Has a FileSystem, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme1n1 ssd Linux_41636239f02ab0c0a1eb 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme2n1 ssd Linux_00f3eeca7bb5ddf7234b 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme3n1 ssd Linux_1619d508578d0a79fa30 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi096 /dev/nvme4n1 ssd Linux_b9aed1e6e30df8b9bd6e 89.4G No 102s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT6233004A400BGN 372G No 109s ago Has a FileSystem, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme1n1 ssd Linux_d0c5bb8f8119628d4a2c 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme2n1 ssd Linux_2279e8ea5a301dd5033f 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme3n1 ssd Linux_894fe7013a77521ae429 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.265 INFO:teuthology.orchestra.run.smithi096.stdout:smithi137 /dev/nvme4n1 ssd Linux_4e8584f09df680f22345 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-05-14T03:37:49.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:49 smithi096 ceph-mon[35980]: pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:49.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:49 smithi137 ceph-mon[46839]: pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:50.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:50 smithi096 ceph-mon[35980]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:50.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:50 smithi137 ceph-mon[46839]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:50.731 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:2965081fb1a343a09e00ceeede998525f5c6cb5e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-05-14T03:37:51.001 INFO:teuthology.orchestra.run.smithi096.stderr:Inferring config /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/mon.smithi096/config 2024-05-14T03:37:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:51 smithi096 ceph-mon[35980]: pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh"}]: dispatch 2024-05-14T03:37:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh"}]': finished 2024-05-14T03:37:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw"}]: dispatch 2024-05-14T03:37:51.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:51 smithi096 ceph-mon[35980]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw"}]': finished 2024-05-14T03:37:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:51 smithi137 ceph-mon[46839]: pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail 2024-05-14T03:37:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh"}]: dispatch 2024-05-14T03:37:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh"}]': finished 2024-05-14T03:37:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd=[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw"}]: dispatch 2024-05-14T03:37:51.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:51 smithi137 ceph-mon[46839]: from='mgr.14217 172.21.15.96:0/562617524' entity='mgr.smithi096.iktflt' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi096.mcbfeh-rgw"}]': finished 2024-05-14T03:37:52.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:52 smithi096 ceph-mon[35980]: Removing key for client.nfs.foo.0.0.smithi096.mcbfeh 2024-05-14T03:37:52.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:52 smithi096 ceph-mon[35980]: Removing key for client.nfs.foo.0.0.smithi096.mcbfeh-rgw 2024-05-14T03:37:52.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:52 smithi096 ceph-mon[35980]: Removing orphan daemon haproxy.nfs.foo.smithi096.mioyvk... 2024-05-14T03:37:52.596 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:52 smithi096 ceph-mon[35980]: Removing daemon haproxy.nfs.foo.smithi096.mioyvk from smithi096 -- ports [2049, 9049] 2024-05-14T03:37:52.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:52 smithi137 ceph-mon[46839]: Removing key for client.nfs.foo.0.0.smithi096.mcbfeh 2024-05-14T03:37:52.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:52 smithi137 ceph-mon[46839]: Removing key for client.nfs.foo.0.0.smithi096.mcbfeh-rgw 2024-05-14T03:37:52.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:52 smithi137 ceph-mon[46839]: Removing orphan daemon haproxy.nfs.foo.smithi096.mioyvk... 2024-05-14T03:37:52.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:52 smithi137 ceph-mon[46839]: Removing daemon haproxy.nfs.foo.smithi096.mioyvk from smithi096 -- ports [2049, 9049] 2024-05-14T03:37:53.277 INFO:teuthology.orchestra.run.smithi096.stdout:osd.all-available-devices 8 24s ago 5m * 2024-05-14T03:37:53.595 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:53 smithi096 ceph-mon[35980]: pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:53.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:53 smithi137 ceph-mon[46839]: pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-05-14T03:37:54.294 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-05-14T03:37:54.305 INFO:tasks.vip:Removing 10.0.15.96 (and any VIPs) on smithi096.front.sepia.ceph.com iface enp3s0f1... 2024-05-14T03:37:54.305 DEBUG:teuthology.orchestra.run.smithi096:> sudo ip addr del 10.0.15.96/16 dev enp3s0f1 2024-05-14T03:37:54.339 DEBUG:teuthology.orchestra.run.smithi096:> sudo ip addr del 10.0.31.96/16 dev enp3s0f1 2024-05-14T03:37:54.407 INFO:tasks.vip:Removing 10.0.15.137 (and any VIPs) on smithi137.front.sepia.ceph.com iface enp3s0f1... 2024-05-14T03:37:54.407 DEBUG:teuthology.orchestra.run.smithi137:> sudo ip addr del 10.0.15.137/16 dev enp3s0f1 2024-05-14T03:37:54.445 DEBUG:teuthology.orchestra.run.smithi137:> sudo ip addr del 10.0.31.96/16 dev enp3s0f1 2024-05-14T03:37:54.516 INFO:teuthology.orchestra.run.smithi137.stderr:RTNETLINK answers: Cannot assign requested address 2024-05-14T03:37:54.516 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-05-14T03:37:54.517 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-05-14T03:37:54.527 INFO:tasks.cephadm:Teardown begin 2024-05-14T03:37:54.528 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:37:54.552 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:54 smithi096 ceph-mon[35980]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:54.556 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:37:54.583 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:54 smithi137 ceph-mon[46839]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-05-14T03:37:54.587 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-05-14T03:37:54.588 DEBUG:teuthology.orchestra.run.smithi096:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-05-14T03:37:54.614 DEBUG:teuthology.orchestra.run.smithi137:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-05-14T03:37:54.647 INFO:tasks.cephadm:Stopping all daemons... 2024-05-14T03:37:54.647 INFO:tasks.cephadm.mon.smithi096:Stopping mon.smithi096... 2024-05-14T03:37:54.647 DEBUG:teuthology.orchestra.run.smithi096:> sudo systemctl stop ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096 2024-05-14T03:37:54.821 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:54 smithi096 systemd[1]: Stopping Ceph mon.smithi096 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:37:55.095 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:54 smithi096 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096[35976]: 2024-05-14T03:37:54.950+0000 7f32a3297700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi096 -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-05-14T03:37:55.096 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:54 smithi096 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096[35976]: 2024-05-14T03:37:54.950+0000 7f32a3297700 -1 mon.smithi096@0(leader) e2 *** Got Signal Terminated *** 2024-05-14T03:37:55.845 INFO:journalctl@ceph.mon.smithi096.smithi096.stdout:May 14 03:37:55 smithi096 bash[106514]: ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi096 2024-05-14T03:37:55.970 DEBUG:teuthology.orchestra.run.smithi096:> sudo pkill -f 'journalctl -f -n 0 -u ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi096.service' 2024-05-14T03:37:56.043 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-05-14T03:37:56.043 INFO:tasks.cephadm.mon.smithi096:Stopped mon.smithi096 2024-05-14T03:37:56.044 INFO:tasks.cephadm.mon.smithi137:Stopping mon.smithi137... 2024-05-14T03:37:56.044 DEBUG:teuthology.orchestra.run.smithi137:> sudo systemctl stop ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi137 2024-05-14T03:37:56.351 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:56 smithi137 systemd[1]: Stopping Ceph mon.smithi137 for 09e7892c-11a2-11ef-bc98-c7b262605968... 2024-05-14T03:37:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:56 smithi137 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi137[46833]: 2024-05-14T03:37:56.350+0000 7f384f52f700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi137 -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-05-14T03:37:56.691 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:56 smithi137 ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi137[46833]: 2024-05-14T03:37:56.350+0000 7f384f52f700 -1 mon.smithi137@1(peon) e2 *** Got Signal Terminated *** 2024-05-14T03:37:57.297 INFO:journalctl@ceph.mon.smithi137.smithi137.stdout:May 14 03:37:56 smithi137 bash[80739]: ceph-09e7892c-11a2-11ef-bc98-c7b262605968-mon-smithi137 2024-05-14T03:37:57.303 DEBUG:teuthology.orchestra.run.smithi137:> sudo pkill -f 'journalctl -f -n 0 -u ceph-09e7892c-11a2-11ef-bc98-c7b262605968@mon.smithi137.service' 2024-05-14T03:37:57.352 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-05-14T03:37:57.353 INFO:tasks.cephadm.mon.smithi137:Stopped mon.smithi137 2024-05-14T03:37:57.353 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 --force --keep-logs 2024-05-14T03:37:57.520 INFO:teuthology.orchestra.run.smithi096.stdout:Deleting cluster with fsid: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:38:53.591 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 --force --keep-logs 2024-05-14T03:38:53.770 INFO:teuthology.orchestra.run.smithi137.stdout:Deleting cluster with fsid: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:39:44.119 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:39:44.157 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-05-14T03:39:44.187 INFO:tasks.cephadm:Archiving crash dumps... 2024-05-14T03:39:44.189 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi096/crash 2024-05-14T03:39:44.190 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash -- . 2024-05-14T03:39:44.247 INFO:teuthology.orchestra.run.smithi096.stderr:tar: /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-14T03:39:44.247 INFO:teuthology.orchestra.run.smithi096.stderr:tar: Error is not recoverable: exiting now 2024-05-14T03:39:44.249 DEBUG:teuthology.misc:Transferring archived files from smithi137:/var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi137/crash 2024-05-14T03:39:44.250 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash -- . 2024-05-14T03:39:44.288 INFO:teuthology.orchestra.run.smithi137.stderr:tar: /var/lib/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/crash: Cannot open: No such file or directory 2024-05-14T03:39:44.288 INFO:teuthology.orchestra.run.smithi137.stderr:tar: Error is not recoverable: exiting now 2024-05-14T03:39:44.289 INFO:tasks.cephadm:Checking cluster log for badness... 2024-05-14T03:39:44.290 DEBUG:teuthology.orchestra.run.smithi096:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-05-14T03:39:44.318 INFO:teuthology.orchestra.run.smithi096.stderr:grep: /var/log/ceph/09e7892c-11a2-11ef-bc98-c7b262605968/ceph.log: No such file or directory 2024-05-14T03:39:44.320 INFO:tasks.cephadm:Compressing logs... 2024-05-14T03:39:44.320 DEBUG:teuthology.orchestra.run.smithi096:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-14T03:39:44.363 DEBUG:teuthology.orchestra.run.smithi137:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-14T03:39:44.389 INFO:teuthology.orchestra.run.smithi096.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-05-14T03:39:44.389 INFO:teuthology.orchestra.run.smithi137.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-05-14T03:39:46.017 INFO:tasks.cephadm:Archiving logs... 2024-05-14T03:39:46.017 DEBUG:teuthology.misc:Transferring archived files from smithi096:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi096/log 2024-05-14T03:39:46.018 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-14T03:39:46.306 DEBUG:teuthology.misc:Transferring archived files from smithi137:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi137/log 2024-05-14T03:39:46.307 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /var/log/ceph -- . 2024-05-14T03:39:46.534 INFO:tasks.cephadm:Removing cluster... 2024-05-14T03:39:46.535 DEBUG:teuthology.orchestra.run.smithi096:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 --force 2024-05-14T03:39:46.709 INFO:teuthology.orchestra.run.smithi096.stdout:Deleting cluster with fsid: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:39:46.852 DEBUG:teuthology.orchestra.run.smithi137:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 09e7892c-11a2-11ef-bc98-c7b262605968 --force 2024-05-14T03:39:47.028 INFO:teuthology.orchestra.run.smithi137.stdout:Deleting cluster with fsid: 09e7892c-11a2-11ef-bc98-c7b262605968 2024-05-14T03:39:47.181 INFO:tasks.cephadm:Removing cephadm ... 2024-05-14T03:39:47.181 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-14T03:39:47.199 DEBUG:teuthology.orchestra.run.smithi137:> rm -rf /home/ubuntu/cephtest/cephadm 2024-05-14T03:39:47.217 INFO:tasks.cephadm:Teardown complete 2024-05-14T03:39:47.217 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-05-14T03:39:47.231 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi096:/dev/vg_nvme/lv_1... 2024-05-14T03:39:47.231 DEBUG:teuthology.orchestra.run.smithi096:> sudo nvme disconnect -n lv_1 2024-05-14T03:39:47.373 INFO:teuthology.orchestra.run.smithi096.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-14T03:39:47.374 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:47.375 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi096:/dev/vg_nvme/lv_2... 2024-05-14T03:39:47.375 DEBUG:teuthology.orchestra.run.smithi096:> sudo nvme disconnect -n lv_2 2024-05-14T03:39:47.492 INFO:teuthology.orchestra.run.smithi096.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-14T03:39:47.492 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:47.493 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi096:/dev/vg_nvme/lv_3... 2024-05-14T03:39:47.493 DEBUG:teuthology.orchestra.run.smithi096:> sudo nvme disconnect -n lv_3 2024-05-14T03:39:47.618 INFO:teuthology.orchestra.run.smithi096.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-14T03:39:47.619 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:47.619 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi096:/dev/vg_nvme/lv_4... 2024-05-14T03:39:47.619 DEBUG:teuthology.orchestra.run.smithi096:> sudo nvme disconnect -n lv_4 2024-05-14T03:39:47.753 INFO:teuthology.orchestra.run.smithi096.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-14T03:39:47.755 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:47.755 DEBUG:teuthology.orchestra.run.smithi096:> set -ex 2024-05-14T03:39:47.755 DEBUG:teuthology.orchestra.run.smithi096:> sudo dd of=/scratch_devs 2024-05-14T03:39:47.782 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi137:/dev/vg_nvme/lv_1... 2024-05-14T03:39:47.782 DEBUG:teuthology.orchestra.run.smithi137:> sudo nvme disconnect -n lv_1 2024-05-14T03:39:47.911 INFO:teuthology.orchestra.run.smithi137.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-05-14T03:39:47.912 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:47.912 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi137:/dev/vg_nvme/lv_2... 2024-05-14T03:39:47.913 DEBUG:teuthology.orchestra.run.smithi137:> sudo nvme disconnect -n lv_2 2024-05-14T03:39:48.043 INFO:teuthology.orchestra.run.smithi137.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-05-14T03:39:48.044 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:48.045 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi137:/dev/vg_nvme/lv_3... 2024-05-14T03:39:48.045 DEBUG:teuthology.orchestra.run.smithi137:> sudo nvme disconnect -n lv_3 2024-05-14T03:39:48.168 INFO:teuthology.orchestra.run.smithi137.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-05-14T03:39:48.169 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:48.170 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi137:/dev/vg_nvme/lv_4... 2024-05-14T03:39:48.170 DEBUG:teuthology.orchestra.run.smithi137:> sudo nvme disconnect -n lv_4 2024-05-14T03:39:48.287 INFO:teuthology.orchestra.run.smithi137.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-05-14T03:39:48.289 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:48.289 DEBUG:teuthology.orchestra.run.smithi137:> set -ex 2024-05-14T03:39:48.289 DEBUG:teuthology.orchestra.run.smithi137:> sudo dd of=/scratch_devs 2024-05-14T03:39:48.315 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-05-14T03:39:48.327 INFO:teuthology.task.clock:Checking final clock skew... 2024-05-14T03:39:48.327 DEBUG:teuthology.orchestra.run.smithi096:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-14T03:39:48.329 DEBUG:teuthology.orchestra.run.smithi137:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-05-14T03:39:48.345 INFO:teuthology.orchestra.run.smithi096.stderr:bash: ntpq: command not found 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:=============================================================================== 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:^* hv01.front.sepia.ceph.com 3 6 377 42 +915us[ +929us] +/- 54ms 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 45 -1558us[-1544us] +/- 56ms 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 42 +707us[ +721us] +/- 88ms 2024-05-14T03:39:48.350 INFO:teuthology.orchestra.run.smithi096.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:39:48.372 INFO:teuthology.orchestra.run.smithi137.stderr:bash: ntpq: command not found 2024-05-14T03:39:48.376 INFO:teuthology.orchestra.run.smithi137.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-05-14T03:39:48.376 INFO:teuthology.orchestra.run.smithi137.stdout:=============================================================================== 2024-05-14T03:39:48.376 INFO:teuthology.orchestra.run.smithi137.stdout:^* hv01.front.sepia.ceph.com 3 6 377 42 +995us[ +968us] +/- 54ms 2024-05-14T03:39:48.376 INFO:teuthology.orchestra.run.smithi137.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 40 -1458us[-1458us] +/- 56ms 2024-05-14T03:39:48.376 INFO:teuthology.orchestra.run.smithi137.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 42 +756us[ +729us] +/- 88ms 2024-05-14T03:39:48.377 INFO:teuthology.orchestra.run.smithi137.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-05-14T03:39:48.377 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-05-14T03:39:48.388 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-05-14T03:39:48.389 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-05-14T03:39:48.419 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:39:48.488 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:39:48.552 DEBUG:teuthology.orchestra.run.smithi096:> 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 2024-05-14T03:39:48.582 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:48.582 DEBUG:teuthology.orchestra.run.smithi137:> 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 2024-05-14T03:39:48.611 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:48.612 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-05-14T03:39:48.623 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-05-14T03:39:48.687 INFO:teuthology.task.internal:Duration was 1052.820089 seconds 2024-05-14T03:39:48.687 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-05-14T03:39:48.754 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-05-14T03:39:48.754 DEBUG:teuthology.orchestra.run.smithi096:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-14T03:39:48.757 DEBUG:teuthology.orchestra.run.smithi137:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-14T03:39:48.801 INFO:teuthology.orchestra.run.smithi096.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-14T03:39:48.802 INFO:teuthology.orchestra.run.smithi137.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-14T03:39:49.201 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-05-14T03:39:49.201 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi096.front.sepia.ceph.com 2024-05-14T03:39:49.201 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:39:49.224 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi137.front.sepia.ceph.com 2024-05-14T03:39:49.224 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:39:49.247 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-05-14T03:39:49.247 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-14T03:39:49.267 DEBUG:teuthology.orchestra.run.smithi137:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-14T03:39:49.335 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-05-14T03:39:49.335 DEBUG:teuthology.orchestra.run.smithi096:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-14T03:39:49.337 DEBUG:teuthology.orchestra.run.smithi137:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-14T03:39:49.460 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-05-14T03:39:49.473 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-05-14T03:39:49.473 DEBUG:teuthology.orchestra.run.smithi096:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-14T03:39:49.499 DEBUG:teuthology.orchestra.run.smithi137:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-14T03:39:49.526 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-05-14T03:39:49.538 DEBUG:teuthology.orchestra.run.smithi096:> 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-05-14T03:39:49.542 DEBUG:teuthology.orchestra.run.smithi137:> 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-05-14T03:39:49.566 INFO:teuthology.orchestra.run.smithi096.stdout:kernel.core_pattern = core 2024-05-14T03:39:49.592 INFO:teuthology.orchestra.run.smithi137.stdout:kernel.core_pattern = core 2024-05-14T03:39:49.608 DEBUG:teuthology.orchestra.run.smithi096:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-14T03:39:49.648 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:49.649 DEBUG:teuthology.orchestra.run.smithi137:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-14T03:39:49.665 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-14T03:39:49.666 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-05-14T03:39:49.678 INFO:teuthology.task.internal:Transferring archived files... 2024-05-14T03:39:49.680 DEBUG:teuthology.misc:Transferring archived files from smithi096:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi096 2024-05-14T03:39:49.680 DEBUG:teuthology.orchestra.run.smithi096:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-14T03:39:49.731 DEBUG:teuthology.misc:Transferring archived files from smithi137:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-13_22:08:02-orch-reef-distro-default-smithi/7705317/remote/smithi137 2024-05-14T03:39:49.731 DEBUG:teuthology.orchestra.run.smithi137:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-14T03:39:49.771 INFO:teuthology.task.internal:Removing archive directory... 2024-05-14T03:39:49.771 DEBUG:teuthology.orchestra.run.smithi096:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-14T03:39:49.773 DEBUG:teuthology.orchestra.run.smithi137:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-14T03:39:49.822 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-05-14T03:39:49.835 INFO:teuthology.task.internal:Not uploading archives. 2024-05-14T03:39:49.835 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-05-14T03:39:49.903 INFO:teuthology.task.internal:Tidying up after the test... 2024-05-14T03:39:49.903 DEBUG:teuthology.orchestra.run.smithi096:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-14T03:39:49.906 DEBUG:teuthology.orchestra.run.smithi137:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-14T03:39:49.920 INFO:teuthology.orchestra.run.smithi096.stdout: 525357 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 14 03:39 /home/ubuntu/cephtest 2024-05-14T03:39:49.923 INFO:teuthology.orchestra.run.smithi137.stdout: 525357 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 14 03:39 /home/ubuntu/cephtest 2024-05-14T03:39:49.924 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-05-14T03:39:49.985 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-05-14T03:39:50.092 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_8.stream_container_tools_crun 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1052.8200886249542 owner: scheduled_teuthology@teuthology success: true 2024-05-14T03:39:50.092 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-14T03:39:50.171 INFO:teuthology.run:pass