2024-09-11T07:55:32.254 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-11T07:55:32.271 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T07:55:32.350 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258 branch: wip-guits-quincy-2024-09-10-2008-quincy description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: gabrioux@ibm.com first_in_suite: false job_id: '7901258' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-guits-quincy-2024-09-10-2008-quincy 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: d0e6828a2016d48cf25ad84064e50742bb1c39b9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 kernel: hwe: true selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-guits-quincy-2024-09-10-2008-quincy sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 2282 sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-quincy-2024-09-10-2008-quincy suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 targets: smithi003.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOEwmktDYbz87Pe9Qb/t0TZhtJ3wKfKfuf1aBz28S8gvdZmwBSHmDsjzHPwYBcVWhVA5jZw9Amt6Agooe0BJ1tQ= smithi183.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEC4IBnXsNepR0sM9XWsCnRBpGHsRkDwO7qbDXT2dtHKv4CNGLhAb3zzpEIPdURefZtaeT4nHUZVOngMduJQg+4= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-11_06:53:43 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-11T07:55:32.350 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa; will attempt to use it 2024-09-11T07:55:32.351 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_d0e6828a2016d48cf25ad84064e50742bb1c39b9/qa/tasks 2024-09-11T07:55:32.351 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-11T07:55:32.353 INFO:teuthology.task.internal:Checking packages... 2024-09-11T07:55:32.375 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'd0e6828a2016d48cf25ad84064e50742bb1c39b9' 2024-09-11T07:55:32.375 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-11T07:55:32.375 INFO:teuthology.packaging:ref: None 2024-09-11T07:55:32.375 INFO:teuthology.packaging:tag: None 2024-09-11T07:55:32.375 INFO:teuthology.packaging:branch: wip-guits-quincy-2024-09-10-2008-quincy 2024-09-11T07:55:32.375 INFO:teuthology.packaging:sha1: d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T07:55:32.375 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-guits-quincy-2024-09-10-2008-quincy 2024-09-11T07:55:32.530 INFO:teuthology.task.internal:Found packages for ceph version 17.2.7-1623.gd0e6828a 2024-09-11T07:55:32.533 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-11T07:55:32.539 INFO:teuthology.task.internal:no buildpackages task found 2024-09-11T07:55:32.539 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-11T07:55:32.546 INFO:teuthology.task.internal:Saving configuration 2024-09-11T07:55:32.561 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-11T07:55:32.567 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-11T07:55:32.589 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi003.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 07:50:37.447380', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOEwmktDYbz87Pe9Qb/t0TZhtJ3wKfKfuf1aBz28S8gvdZmwBSHmDsjzHPwYBcVWhVA5jZw9Amt6Agooe0BJ1tQ='} 2024-09-11T07:55:32.609 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi183.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-11 07:50:37.448551', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEC4IBnXsNepR0sM9XWsCnRBpGHsRkDwO7qbDXT2dtHKv4CNGLhAb3zzpEIPdURefZtaeT4nHUZVOngMduJQg+4='} 2024-09-11T07:55:32.609 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-11T07:55:32.615 INFO:teuthology.task.internal:roles: ubuntu@smithi003.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-11T07:55:32.616 INFO:teuthology.task.internal:roles: ubuntu@smithi183.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-11T07:55:32.616 INFO:teuthology.run_tasks:Running task console_log... 2024-09-11T07:55:32.679 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f5a698ffac0>, signals=[15]) 2024-09-11T07:55:32.679 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-11T07:55:32.685 INFO:teuthology.task.internal:Opening connections... 2024-09-11T07:55:32.685 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T07:55:32.686 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:55:32.766 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi183.front.sepia.ceph.com 2024-09-11T07:55:32.767 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:55:32.843 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-11T07:55:32.849 DEBUG:teuthology.orchestra.run.smithi003:> uname -m 2024-09-11T07:55:32.867 INFO:teuthology.orchestra.run.smithi003.stdout:x86_64 2024-09-11T07:55:32.867 DEBUG:teuthology.orchestra.run.smithi003:> cat /etc/os-release 2024-09-11T07:55:32.925 INFO:teuthology.orchestra.run.smithi003.stdout:NAME="CentOS Stream" 2024-09-11T07:55:32.925 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION="9" 2024-09-11T07:55:32.925 INFO:teuthology.orchestra.run.smithi003.stdout:ID="centos" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:ID_LIKE="rhel fedora" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION_ID="9" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:PLATFORM_ID="platform:el9" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:ANSI_COLOR="0;31" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:LOGO="fedora-logo-icon" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:HOME_URL="https://centos.org/" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-11T07:55:32.926 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-11T07:55:32.927 INFO:teuthology.lock.ops:Updating smithi003.front.sepia.ceph.com on lock server 2024-09-11T07:55:32.954 DEBUG:teuthology.orchestra.run.smithi183:> uname -m 2024-09-11T07:55:32.973 INFO:teuthology.orchestra.run.smithi183.stdout:x86_64 2024-09-11T07:55:32.973 DEBUG:teuthology.orchestra.run.smithi183:> cat /etc/os-release 2024-09-11T07:55:33.030 INFO:teuthology.orchestra.run.smithi183.stdout:NAME="CentOS Stream" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION="9" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:ID="centos" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:ID_LIKE="rhel fedora" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_ID="9" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:PLATFORM_ID="platform:el9" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:ANSI_COLOR="0;31" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:LOGO="fedora-logo-icon" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-11T07:55:33.031 INFO:teuthology.orchestra.run.smithi183.stdout:HOME_URL="https://centos.org/" 2024-09-11T07:55:33.032 INFO:teuthology.orchestra.run.smithi183.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-11T07:55:33.032 INFO:teuthology.orchestra.run.smithi183.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-11T07:55:33.032 INFO:teuthology.orchestra.run.smithi183.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-11T07:55:33.032 INFO:teuthology.lock.ops:Updating smithi183.front.sepia.ceph.com on lock server 2024-09-11T07:55:33.051 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-11T07:55:33.060 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-11T07:55:33.067 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-11T07:55:33.067 DEBUG:teuthology.orchestra.run.smithi003:> test '!' -e /home/ubuntu/cephtest 2024-09-11T07:55:33.072 DEBUG:teuthology.orchestra.run.smithi183:> test '!' -e /home/ubuntu/cephtest 2024-09-11T07:55:33.088 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-11T07:55:33.093 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-11T07:55:33.094 DEBUG:teuthology.orchestra.run.smithi003:> test -z $(ls -A /var/lib/ceph) 2024-09-11T07:55:33.127 DEBUG:teuthology.orchestra.run.smithi183:> test -z $(ls -A /var/lib/ceph) 2024-09-11T07:55:33.376 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-11T07:55:33.431 INFO:teuthology.run_tasks:Running task kernel... 2024-09-11T07:55:33.445 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-11T07:55:33.445 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-09-11T07:55:33.446 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2024-09-11T07:55:33.446 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': 1, 'sha1': 'distro', 'hwe': True}}, timeout 300 2024-09-11T07:55:33.446 DEBUG:teuthology.orchestra.run.smithi003:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T07:55:33.446 DEBUG:teuthology.orchestra.run.smithi183:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-11T07:55:33.463 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:55:33.464 DEBUG:teuthology.orchestra.run.smithi003:> uname -r 2024-09-11T07:55:33.464 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:55:33.465 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-09-11T07:55:33.521 INFO:teuthology.orchestra.run.smithi003.stdout:5.14.0-503.el9.x86_64 2024-09-11T07:55:33.521 INFO:teuthology.task.kernel:Running kernel on smithi003: 5.14.0-503.el9.x86_64 2024-09-11T07:55:33.522 DEBUG:teuthology.orchestra.run.smithi003:> sudo yum install -y kernel 2024-09-11T07:55:33.523 INFO:teuthology.orchestra.run.smithi183.stdout:5.14.0-503.el9.x86_64 2024-09-11T07:55:33.523 INFO:teuthology.task.kernel:Running kernel on smithi183: 5.14.0-503.el9.x86_64 2024-09-11T07:55:33.523 DEBUG:teuthology.orchestra.run.smithi183:> sudo yum install -y kernel 2024-09-11T07:55:37.000 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.2 MB 00:01 2024-09-11T07:55:37.152 INFO:teuthology.orchestra.run.smithi003.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.2 MB 00:01 2024-09-11T07:55:39.362 INFO:teuthology.orchestra.run.smithi003.stdout:CentOS Stream 9 - AppStream 19 MB/s | 20 MB 00:01 2024-09-11T07:55:43.383 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - AppStream 3.9 MB/s | 20 MB 00:05 2024-09-11T07:55:44.821 INFO:teuthology.orchestra.run.smithi003.stdout:CentOS Stream 9 - CRB 4.2 MB/s | 6.5 MB 00:01 2024-09-11T07:55:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:CentOS Stream 9 - Extras packages 65 kB/s | 19 kB 00:00 2024-09-11T07:55:47.233 INFO:teuthology.orchestra.run.smithi003.stdout:Extra Packages for Enterprise Linux 31 MB/s | 23 MB 00:00 2024-09-11T07:55:47.758 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.5 MB 00:00 2024-09-11T07:55:49.209 INFO:teuthology.orchestra.run.smithi183.stdout:CentOS Stream 9 - Extras packages 76 kB/s | 19 kB 00:00 2024-09-11T07:55:49.955 INFO:teuthology.orchestra.run.smithi183.stdout:Extra Packages for Enterprise Linux 36 MB/s | 23 MB 00:00 2024-09-11T07:55:52.948 INFO:teuthology.orchestra.run.smithi003.stdout:lab-extras 28 kB/s | 1.7 kB 00:00 2024-09-11T07:55:55.046 INFO:teuthology.orchestra.run.smithi003.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-11T07:55:55.046 INFO:teuthology.orchestra.run.smithi003.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-11T07:55:55.141 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-09-11T07:55:55.147 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: Package Architecture Version Repository Size 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:Installing: 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:Installing dependencies: 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T07:55:55.148 INFO:teuthology.orchestra.run.smithi003.stdout:Install 4 Packages 2024-09-11T07:55:55.149 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:55:55.149 INFO:teuthology.orchestra.run.smithi003.stdout:Total download size: 79 M 2024-09-11T07:55:55.149 INFO:teuthology.orchestra.run.smithi003.stdout:Installed size: 126 M 2024-09-11T07:55:55.149 INFO:teuthology.orchestra.run.smithi003.stdout:Downloading Packages: 2024-09-11T07:55:55.349 INFO:teuthology.orchestra.run.smithi003.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 279 kB/s | 23 kB 00:00 2024-09-11T07:55:55.352 INFO:teuthology.orchestra.run.smithi183.stdout:lab-extras 45 kB/s | 1.7 kB 00:00 2024-09-11T07:55:57.342 INFO:teuthology.orchestra.run.smithi183.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-11T07:55:57.342 INFO:teuthology.orchestra.run.smithi183.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-11T07:55:57.433 INFO:teuthology.orchestra.run.smithi183.stdout:Dependencies resolved. 2024-09-11T07:55:57.445 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: Package Architecture Version Repository Size 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout:Installing: 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout:Installing dependencies: 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction Summary 2024-09-11T07:55:57.446 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T07:55:57.447 INFO:teuthology.orchestra.run.smithi183.stdout:Install 4 Packages 2024-09-11T07:55:57.447 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:55:57.447 INFO:teuthology.orchestra.run.smithi183.stdout:Total download size: 79 M 2024-09-11T07:55:57.447 INFO:teuthology.orchestra.run.smithi183.stdout:Installed size: 126 M 2024-09-11T07:55:57.447 INFO:teuthology.orchestra.run.smithi183.stdout:Downloading Packages: 2024-09-11T07:55:57.578 INFO:teuthology.orchestra.run.smithi183.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 313 kB/s | 23 kB 00:00 2024-09-11T07:55:57.982 INFO:teuthology.orchestra.run.smithi003.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 5.8 MB/s | 16 MB 00:02 2024-09-11T07:55:59.615 INFO:teuthology.orchestra.run.smithi003.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 6.7 MB/s | 29 MB 00:04 2024-09-11T07:56:00.195 INFO:teuthology.orchestra.run.smithi183.stdout:(2/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 13 MB/s | 35 MB 00:02 2024-09-11T07:56:01.695 INFO:teuthology.orchestra.run.smithi183.stdout:(3/4): kernel-core-5.14.0-505.el9.x86_64.rpm 3.7 MB/s | 16 MB 00:04 2024-09-11T07:56:01.753 INFO:teuthology.orchestra.run.smithi003.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 5.3 MB/s | 35 MB 00:06 2024-09-11T07:56:01.753 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-09-11T07:56:01.753 INFO:teuthology.orchestra.run.smithi003.stdout:Total 12 MB/s | 79 MB 00:06 2024-09-11T07:56:02.467 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction check 2024-09-11T07:56:02.837 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction check succeeded. 2024-09-11T07:56:02.837 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction test 2024-09-11T07:56:03.809 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction test succeeded. 2024-09-11T07:56:03.810 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction 2024-09-11T07:56:05.170 INFO:teuthology.orchestra.run.smithi183.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 3.8 MB/s | 29 MB 00:07 2024-09-11T07:56:05.170 INFO:teuthology.orchestra.run.smithi183.stdout:-------------------------------------------------------------------------------- 2024-09-11T07:56:05.170 INFO:teuthology.orchestra.run.smithi183.stdout:Total 10 MB/s | 79 MB 00:07 2024-09-11T07:56:05.856 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction check 2024-09-11T07:56:06.223 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction check succeeded. 2024-09-11T07:56:06.223 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction test 2024-09-11T07:56:06.392 INFO:teuthology.orchestra.run.smithi003.stdout: Preparing : 1/1 2024-09-11T07:56:07.078 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-11T07:56:07.176 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:56:07.236 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction test succeeded. 2024-09-11T07:56:07.236 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction 2024-09-11T07:56:09.707 INFO:teuthology.orchestra.run.smithi183.stdout: Preparing : 1/1 2024-09-11T07:56:09.947 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:56:10.070 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:56:10.349 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-11T07:56:10.430 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:56:13.219 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:56:13.346 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:56:15.199 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:56:15.246 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:18.186 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:56:18.281 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:20.387 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:23.146 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:59.434 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:59.474 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:59.855 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:56:59.855 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-11T07:56:59.856 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:56:59.856 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout:Installed: 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:57:00.697 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-09-11T07:57:01.047 DEBUG:teuthology.orchestra.run.smithi003:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T07:57:01.138 INFO:teuthology.orchestra.run.smithi003.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:01.138 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T07:57:01.138 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-11T07:57:01.138 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T07:57:01.139 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T07:57:01.139 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-11T07:57:01.139 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi003.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T07:57:01.139 DEBUG:teuthology.orchestra.run.smithi003:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T07:57:01.197 INFO:teuthology.orchestra.run.smithi003.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:01.198 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T07:57:01.198 DEBUG:teuthology.orchestra.run.smithi003:> sudo rpm -qi grub2-tools 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Name : grub2-tools 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Epoch : 1 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Version : 2.06 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Release : 82.el9 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Architecture: x86_64 2024-09-11T07:57:01.238 INFO:teuthology.orchestra.run.smithi003.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Group : Unspecified 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Size : 8274670 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:License : GPLv3+ 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Packager : builder@centos.org 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Vendor : CentOS 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Summary : Support tools for GRUB. 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout:Description : 2024-09-11T07:57:01.239 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout:hardware devices. 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T07:57:01.240 INFO:teuthology.orchestra.run.smithi003.stdout:This subpackage provides tools for support of all platforms. 2024-09-11T07:57:01.241 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-11T07:57:01.241 INFO:teuthology.task.kernel:Updating grub on smithi003 to boot 5.14.0-505.el9.x86_64 2024-09-11T07:57:01.241 DEBUG:teuthology.orchestra.run.smithi003:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-11T07:57:01.260 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:57:01.300 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:57:01.674 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:57:01.674 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-11T07:57:01.674 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-11T07:57:01.674 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-11T07:57:01.970 INFO:teuthology.orchestra.run.smithi003.stderr:Generating grub configuration file ... 2024-09-11T07:57:02.532 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-11T07:57:02.532 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout:Installed: 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:57:02.533 INFO:teuthology.orchestra.run.smithi183.stdout:Complete! 2024-09-11T07:57:02.887 DEBUG:teuthology.orchestra.run.smithi183:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T07:57:02.967 INFO:teuthology.orchestra.run.smithi183.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:02.968 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T07:57:02.968 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-11T07:57:02.968 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-11T07:57:02.968 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-11T07:57:02.968 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-11T07:57:02.968 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi183.front.sepia.ceph.com, path=None, version=distro) 2024-09-11T07:57:02.968 DEBUG:teuthology.orchestra.run.smithi183:> rpm -q kernel | sort -rV | head -n 1 2024-09-11T07:57:03.026 INFO:teuthology.orchestra.run.smithi183.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-11T07:57:03.026 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-11T07:57:03.027 DEBUG:teuthology.orchestra.run.smithi183:> sudo rpm -qi grub2-tools 2024-09-11T07:57:03.058 INFO:teuthology.orchestra.run.smithi183.stdout:Name : grub2-tools 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Epoch : 1 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Version : 2.06 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Release : 82.el9 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Architecture: x86_64 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Group : Unspecified 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Size : 8274670 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:License : GPLv3+ 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-11T07:57:03.059 INFO:teuthology.orchestra.run.smithi183.stdout:Packager : builder@centos.org 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:Vendor : CentOS 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:Summary : Support tools for GRUB. 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:Description : 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:hardware devices. 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T07:57:03.060 INFO:teuthology.orchestra.run.smithi183.stdout:This subpackage provides tools for support of all platforms. 2024-09-11T07:57:03.061 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-11T07:57:03.061 INFO:teuthology.task.kernel:Updating grub on smithi183 to boot 5.14.0-505.el9.x86_64 2024-09-11T07:57:03.061 DEBUG:teuthology.orchestra.run.smithi183:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-11T07:57:03.342 INFO:teuthology.orchestra.run.smithi003.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-11T07:57:03.374 INFO:teuthology.orchestra.run.smithi003.stderr:done 2024-09-11T07:57:03.377 DEBUG:teuthology.orchestra.run.smithi003:> mktemp 2024-09-11T07:57:03.392 INFO:teuthology.orchestra.run.smithi003.stdout:/tmp/tmp.b6nnMXDoOZ 2024-09-11T07:57:03.392 DEBUG:teuthology.orchestra.run.smithi003:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.b6nnMXDoOZ 2024-09-11T07:57:03.461 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 0666 /tmp/tmp.b6nnMXDoOZ 2024-09-11T07:57:03.616 DEBUG:teuthology.orchestra.remote:smithi003:/tmp/tmp.b6nnMXDoOZ is 6KB 2024-09-11T07:57:03.665 DEBUG:teuthology.orchestra.run.smithi003:> rm -fr /tmp/tmp.b6nnMXDoOZ 2024-09-11T07:57:03.679 DEBUG:teuthology.orchestra.run.smithi003:> sudo /bin/ls /boot/loader/entries || true 2024-09-11T07:57:03.731 INFO:teuthology.orchestra.run.smithi183.stderr:Generating grub configuration file ... 2024-09-11T07:57:03.742 INFO:teuthology.orchestra.run.smithi003.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-11T07:57:03.742 INFO:teuthology.orchestra.run.smithi003.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-11T07:57:03.742 INFO:teuthology.orchestra.run.smithi003.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-11T07:57:03.742 INFO:teuthology.orchestra.run.smithi003.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-11T07:57:03.743 DEBUG:teuthology.orchestra.run.smithi003:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-11T07:57:03.896 DEBUG:teuthology.orchestra.run.smithi003:> sudo shutdown -r now 2024-09-11T07:57:05.126 INFO:teuthology.orchestra.run.smithi183.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-11T07:57:05.162 INFO:teuthology.orchestra.run.smithi183.stderr:done 2024-09-11T07:57:05.164 DEBUG:teuthology.orchestra.run.smithi183:> mktemp 2024-09-11T07:57:05.179 INFO:teuthology.orchestra.run.smithi183.stdout:/tmp/tmp.JHEcrG004h 2024-09-11T07:57:05.179 DEBUG:teuthology.orchestra.run.smithi183:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.JHEcrG004h 2024-09-11T07:57:05.247 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 0666 /tmp/tmp.JHEcrG004h 2024-09-11T07:57:05.391 DEBUG:teuthology.orchestra.remote:smithi183:/tmp/tmp.JHEcrG004h is 6KB 2024-09-11T07:57:05.439 DEBUG:teuthology.orchestra.run.smithi183:> rm -fr /tmp/tmp.JHEcrG004h 2024-09-11T07:57:05.454 DEBUG:teuthology.orchestra.run.smithi183:> sudo /bin/ls /boot/loader/entries || true 2024-09-11T07:57:05.517 INFO:teuthology.orchestra.run.smithi183.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-11T07:57:05.517 INFO:teuthology.orchestra.run.smithi183.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-11T07:57:05.517 INFO:teuthology.orchestra.run.smithi183.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-11T07:57:05.517 INFO:teuthology.orchestra.run.smithi183.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-11T07:57:05.519 DEBUG:teuthology.orchestra.run.smithi183:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-11T07:57:05.669 DEBUG:teuthology.orchestra.run.smithi183:> sudo shutdown -r now 2024-09-11T07:57:33.921 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-11T07:57:33.922 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-11T07:57:33.923 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:57:35.673 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-11T07:57:35.674 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-09-11T07:57:35.674 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:58:33.983 DEBUG:teuthology.orchestra.remote:timed out 2024-09-11T07:58:35.677 DEBUG:teuthology.orchestra.remote:timed out 2024-09-11T07:58:42.989 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-11T07:58:42.990 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:58:44.328 DEBUG:teuthology.orchestra.run.smithi003:> true 2024-09-11T07:58:44.678 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-09-11T07:58:44.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T07:58:44.829 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-11T07:58:44.830 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-505.el9.x86_64"... 2024-09-11T07:58:44.830 DEBUG:teuthology.orchestra.run.smithi003:> uname -r 2024-09-11T07:58:44.845 INFO:teuthology.orchestra.run.smithi003.stdout:5.14.0-505.el9.x86_64 2024-09-11T07:58:44.845 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-11T07:58:44.845 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T07:58:44.845 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-11T07:58:45.122 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-09-11T07:58:45.547 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-09-11T07:58:45.547 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-505.el9.x86_64"... 2024-09-11T07:58:45.548 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-09-11T07:58:45.562 INFO:teuthology.orchestra.run.smithi183.stdout:5.14.0-505.el9.x86_64 2024-09-11T07:58:45.563 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-11T07:58:45.563 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-11T07:58:45.563 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-11T07:58:45.846 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-11T07:58:45.847 DEBUG:teuthology.orchestra.run.smithi003:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T07:58:45.925 INFO:teuthology.orchestra.run.smithi003.stdout:ttyS1 2024-09-11T07:58:45.947 DEBUG:teuthology.parallel:result is None 2024-09-11T07:58:46.564 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-11T07:58:46.564 DEBUG:teuthology.orchestra.run.smithi183:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-11T07:58:46.644 INFO:teuthology.orchestra.run.smithi183.stdout:ttyS1 2024-09-11T07:58:46.672 DEBUG:teuthology.parallel:result is None 2024-09-11T07:58:46.672 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-11T07:58:46.683 INFO:teuthology.task.internal:Creating test directory... 2024-09-11T07:58:46.684 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T07:58:46.686 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-11T07:58:46.701 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-11T07:58:46.707 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-11T07:58:46.717 INFO:teuthology.task.internal:Creating archive directory... 2024-09-11T07:58:46.717 DEBUG:teuthology.orchestra.run.smithi003:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T07:58:46.742 DEBUG:teuthology.orchestra.run.smithi183:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-11T07:58:46.762 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-11T07:58:46.769 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-11T07:58:46.769 DEBUG:teuthology.orchestra.run.smithi003:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T07:58:46.799 DEBUG:teuthology.orchestra.run.smithi183:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-11T07:58:46.828 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:58:46.829 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:58:46.838 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:58:46.840 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-11T07:58:46.842 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-11T07:58:46.849 INFO:teuthology.task.internal:Configuring sudo... 2024-09-11T07:58:46.849 DEBUG:teuthology.orchestra.run.smithi003:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T07:58:46.884 DEBUG:teuthology.orchestra.run.smithi183:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-11T07:58:46.908 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-11T07:58:46.917 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-11T07:58:46.917 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T07:58:46.950 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-11T07:58:46.965 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:58:47.045 DEBUG:teuthology.orchestra.run.smithi003:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:58:47.093 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:58:47.177 DEBUG:teuthology.orchestra.run.smithi003:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:58:47.217 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T07:58:47.217 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T07:58:47.294 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:58:47.334 DEBUG:teuthology.orchestra.run.smithi183:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-11T07:58:47.388 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:58:47.469 DEBUG:teuthology.orchestra.run.smithi183:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-11T07:58:47.509 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T07:58:47.509 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-11T07:58:47.574 DEBUG:teuthology.orchestra.run.smithi003:> sudo service rsyslog restart 2024-09-11T07:58:47.577 DEBUG:teuthology.orchestra.run.smithi183:> sudo service rsyslog restart 2024-09-11T07:58:47.621 INFO:teuthology.orchestra.run.smithi003.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T07:58:47.666 INFO:teuthology.orchestra.run.smithi183.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T07:58:48.093 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-11T07:58:48.102 INFO:teuthology.task.internal:Starting timer... 2024-09-11T07:58:48.102 INFO:teuthology.run_tasks:Running task pcp... 2024-09-11T07:58:48.112 INFO:teuthology.run_tasks:Running task selinux... 2024-09-11T07:58:48.119 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-09-11T07:58:48.119 DEBUG:teuthology.orchestra.run.smithi003:> sudo service auditd rotate 2024-09-11T07:58:48.164 INFO:teuthology.orchestra.run.smithi003.stdout:Rotating logs: 2024-09-11T07:58:48.165 DEBUG:teuthology.orchestra.run.smithi183:> sudo service auditd rotate 2024-09-11T07:58:48.225 INFO:teuthology.orchestra.run.smithi183.stdout:Rotating logs: 2024-09-11T07:58:48.228 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-11T07:58:48.228 DEBUG:teuthology.orchestra.run.smithi003:> /usr/sbin/getenforce 2024-09-11T07:58:48.248 INFO:teuthology.orchestra.run.smithi003.stdout:Permissive 2024-09-11T07:58:48.249 DEBUG:teuthology.orchestra.run.smithi183:> /usr/sbin/getenforce 2024-09-11T07:58:48.269 INFO:teuthology.orchestra.run.smithi183.stdout:Permissive 2024-09-11T07:58:48.270 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi003.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi183.front.sepia.ceph.com': 'permissive'} 2024-09-11T07:58:48.270 DEBUG:teuthology.orchestra.run.smithi003:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-11T07:58:48.316 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:58:48.316 DEBUG:teuthology.orchestra.run.smithi183:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-11T07:58:48.341 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T07:58:48.342 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-11T07:58:48.342 DEBUG:teuthology.orchestra.run.smithi003:> sudo /usr/sbin/setenforce permissive 2024-09-11T07:58:48.394 DEBUG:teuthology.orchestra.run.smithi183:> sudo /usr/sbin/setenforce permissive 2024-09-11T07:58:48.425 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-11T07:58:48.435 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-11T07:58:48.447 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-11T07:58:48.448 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi003.front.sepia.ceph.com,smithi183.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-11T08:02:30.814 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi003.front.sepia.ceph.com'), Remote(name='ubuntu@smithi183.front.sepia.ceph.com')] 2024-09-11T08:02:30.815 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-11T08:02:30.816 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T08:02:30.894 DEBUG:teuthology.orchestra.run.smithi003:> true 2024-09-11T08:02:30.973 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-11T08:02:30.973 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-09-11T08:02:30.974 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-11T08:02:31.046 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-09-11T08:02:31.128 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-09-11T08:02:31.129 INFO:teuthology.run_tasks:Running task clock... 2024-09-11T08:02:31.145 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-11T08:02:31.145 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T08:02:31.146 DEBUG:teuthology.orchestra.run.smithi003:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T08:02:31.148 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-11T08:02:31.148 DEBUG:teuthology.orchestra.run.smithi183:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T08:02:31.178 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-11T08:02:31.193 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-11T08:02:31.199 INFO:teuthology.orchestra.run.smithi183.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-11T08:02:31.214 INFO:teuthology.orchestra.run.smithi183.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-11T08:02:31.220 INFO:teuthology.orchestra.run.smithi003.stderr:sudo: ntpd: command not found 2024-09-11T08:02:31.233 INFO:teuthology.orchestra.run.smithi003.stdout:506 Cannot talk to daemon 2024-09-11T08:02:31.239 INFO:teuthology.orchestra.run.smithi183.stderr:sudo: ntpd: command not found 2024-09-11T08:02:31.248 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-11T08:02:31.251 INFO:teuthology.orchestra.run.smithi183.stdout:506 Cannot talk to daemon 2024-09-11T08:02:31.263 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-11T08:02:31.265 INFO:teuthology.orchestra.run.smithi183.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-11T08:02:31.279 INFO:teuthology.orchestra.run.smithi183.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-11T08:02:31.333 INFO:teuthology.orchestra.run.smithi003.stderr:bash: line 1: ntpq: command not found 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:=============================================================================== 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.337 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.338 INFO:teuthology.orchestra.run.smithi183.stderr:bash: line 1: ntpq: command not found 2024-09-11T08:02:31.340 INFO:teuthology.orchestra.run.smithi183.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T08:02:31.340 INFO:teuthology.orchestra.run.smithi183.stdout:=============================================================================== 2024-09-11T08:02:31.340 INFO:teuthology.orchestra.run.smithi183.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.341 INFO:teuthology.orchestra.run.smithi183.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.341 INFO:teuthology.orchestra.run.smithi183.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.341 INFO:teuthology.orchestra.run.smithi183.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:02:31.342 INFO:teuthology.run_tasks:Running task pexec... 2024-09-11T08:02:31.351 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-11T08:02:31.351 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:02:31.351 DEBUG:teuthology.orchestra.run.smithi003:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-11T08:02:31.352 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi183.front.sepia.ceph.com 2024-09-11T08:02:31.352 DEBUG:teuthology.orchestra.run.smithi183:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-11T08:02:31.729 INFO:teuthology.orchestra.run.smithi183.stdout:Dependencies resolved. 2024-09-11T08:02:31.741 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout: Package Architecture Version Repository Size 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout:Removing: 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout:Removing unused dependencies: 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:31.742 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction Summary 2024-09-11T08:02:31.743 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:31.743 INFO:teuthology.orchestra.run.smithi183.stdout:Remove 2 Packages 2024-09-11T08:02:31.743 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:31.743 INFO:teuthology.orchestra.run.smithi183.stdout:Freed space: 5.5 M 2024-09-11T08:02:31.743 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction check 2024-09-11T08:02:31.746 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-09-11T08:02:31.747 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction check succeeded. 2024-09-11T08:02:31.747 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction test 2024-09-11T08:02:31.760 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:31.760 INFO:teuthology.orchestra.run.smithi003.stdout: Package Architecture Version Repository Size 2024-09-11T08:02:31.760 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Removing: 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Removing unused dependencies: 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Remove 2 Packages 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Freed space: 5.5 M 2024-09-11T08:02:31.761 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction check 2024-09-11T08:02:31.765 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction check succeeded. 2024-09-11T08:02:31.765 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction test 2024-09-11T08:02:31.808 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction test succeeded. 2024-09-11T08:02:31.808 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction 2024-09-11T08:02:31.825 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction test succeeded. 2024-09-11T08:02:31.825 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction 2024-09-11T08:02:31.957 INFO:teuthology.orchestra.run.smithi183.stdout: Preparing : 1/1 2024-09-11T08:02:31.973 INFO:teuthology.orchestra.run.smithi003.stdout: Preparing : 1/1 2024-09-11T08:02:32.049 INFO:teuthology.orchestra.run.smithi183.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-11T08:02:32.063 INFO:teuthology.orchestra.run.smithi003.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-11T08:02:32.104 INFO:teuthology.orchestra.run.smithi183.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T08:02:32.124 INFO:teuthology.orchestra.run.smithi003.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T08:02:32.614 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T08:02:32.614 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-11T08:02:32.681 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-11T08:02:32.682 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout:Removed: 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:32.840 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-09-11T08:02:32.947 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-11T08:02:32.948 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:32.948 INFO:teuthology.orchestra.run.smithi183.stdout:Removed: 2024-09-11T08:02:32.948 INFO:teuthology.orchestra.run.smithi183.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T08:02:32.948 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:32.948 INFO:teuthology.orchestra.run.smithi183.stdout:Complete! 2024-09-11T08:02:33.664 INFO:teuthology.orchestra.run.smithi003.stdout:Last metadata expiration check: 0:00:45 ago on Wed 11 Sep 2024 08:01:48 AM UTC. 2024-09-11T08:02:33.767 INFO:teuthology.orchestra.run.smithi183.stdout:Last metadata expiration check: 0:00:48 ago on Wed 11 Sep 2024 08:01:45 AM UTC. 2024-09-11T08:02:33.803 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: Package Architecture Version Repository Size 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout:Installing: 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout:Installing dependencies: 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-11T08:02:33.804 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:33.805 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-09-11T08:02:33.805 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:02:33.805 INFO:teuthology.orchestra.run.smithi003.stdout:Install 6 Packages 2024-09-11T08:02:33.805 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:33.809 INFO:teuthology.orchestra.run.smithi003.stdout:Total download size: 2.0 M 2024-09-11T08:02:33.809 INFO:teuthology.orchestra.run.smithi003.stdout:Installed size: 9.2 M 2024-09-11T08:02:33.809 INFO:teuthology.orchestra.run.smithi003.stdout:Downloading Packages: 2024-09-11T08:02:33.902 INFO:teuthology.orchestra.run.smithi183.stdout:Dependencies resolved. 2024-09-11T08:02:33.903 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:33.903 INFO:teuthology.orchestra.run.smithi183.stdout: Package Architecture Version Repository Size 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:Installing: 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:Installing dependencies: 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction Summary 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:================================================================================ 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout:Install 6 Packages 2024-09-11T08:02:33.904 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:33.912 INFO:teuthology.orchestra.run.smithi183.stdout:Total download size: 2.0 M 2024-09-11T08:02:33.912 INFO:teuthology.orchestra.run.smithi183.stdout:Installed size: 9.2 M 2024-09-11T08:02:33.912 INFO:teuthology.orchestra.run.smithi183.stdout:Downloading Packages: 2024-09-11T08:02:34.077 INFO:teuthology.orchestra.run.smithi183.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 383 kB/s | 44 kB 00:00 2024-09-11T08:02:34.102 INFO:teuthology.orchestra.run.smithi183.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 750 kB/s | 106 kB 00:00 2024-09-11T08:02:34.102 INFO:teuthology.orchestra.run.smithi003.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 279 kB/s | 44 kB 00:00 2024-09-11T08:02:34.128 INFO:teuthology.orchestra.run.smithi003.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 575 kB/s | 106 kB 00:00 2024-09-11T08:02:34.152 INFO:teuthology.orchestra.run.smithi183.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 954 kB/s | 72 kB 00:00 2024-09-11T08:02:34.177 INFO:teuthology.orchestra.run.smithi183.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2024-09-11T08:02:34.203 INFO:teuthology.orchestra.run.smithi003.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2024-09-11T08:02:34.203 INFO:teuthology.orchestra.run.smithi183.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.7 MB/s | 906 kB 00:00 2024-09-11T08:02:34.228 INFO:teuthology.orchestra.run.smithi003.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 571 kB/s | 72 kB 00:00 2024-09-11T08:02:34.253 INFO:teuthology.orchestra.run.smithi003.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 2.8 MB/s | 906 kB 00:00 2024-09-11T08:02:34.303 INFO:teuthology.orchestra.run.smithi183.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.4 MB/s | 837 kB 00:00 2024-09-11T08:02:34.304 INFO:teuthology.orchestra.run.smithi183.stdout:-------------------------------------------------------------------------------- 2024-09-11T08:02:34.304 INFO:teuthology.orchestra.run.smithi183.stdout:Total 5.1 MB/s | 2.0 MB 00:00 2024-09-11T08:02:34.354 INFO:teuthology.orchestra.run.smithi003.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 5.4 MB/s | 837 kB 00:00 2024-09-11T08:02:34.354 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-09-11T08:02:34.354 INFO:teuthology.orchestra.run.smithi003.stdout:Total 3.7 MB/s | 2.0 MB 00:00 2024-09-11T08:02:34.377 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction check 2024-09-11T08:02:34.391 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction check succeeded. 2024-09-11T08:02:34.391 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction test 2024-09-11T08:02:34.432 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction check 2024-09-11T08:02:34.447 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction check succeeded. 2024-09-11T08:02:34.447 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction test 2024-09-11T08:02:34.709 INFO:teuthology.orchestra.run.smithi183.stdout:Transaction test succeeded. 2024-09-11T08:02:34.709 INFO:teuthology.orchestra.run.smithi183.stdout:Running transaction 2024-09-11T08:02:34.786 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction test succeeded. 2024-09-11T08:02:34.787 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction 2024-09-11T08:02:35.131 INFO:teuthology.orchestra.run.smithi183.stdout: Preparing : 1/1 2024-09-11T08:02:35.223 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-11T08:02:35.230 INFO:teuthology.orchestra.run.smithi003.stdout: Preparing : 1/1 2024-09-11T08:02:35.257 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-11T08:02:35.285 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-11T08:02:35.325 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-11T08:02:35.365 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-11T08:02:35.395 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-11T08:02:35.497 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-11T08:02:35.533 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-11T08:02:35.618 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-11T08:02:35.659 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-11T08:02:35.980 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-11T08:02:36.003 INFO:teuthology.orchestra.run.smithi183.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-11T08:02:36.145 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-11T08:02:36.178 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-11T08:02:36.963 INFO:teuthology.orchestra.run.smithi183.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-11T08:02:36.964 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-11T08:02:36.964 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-11T08:02:36.964 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-11T08:02:36.964 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-11T08:02:36.964 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-11T08:02:37.190 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-11T08:02:37.190 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-11T08:02:37.190 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-11T08:02:37.191 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-11T08:02:37.191 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-11T08:02:37.191 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-11T08:02:37.338 INFO:teuthology.orchestra.run.smithi183.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-11T08:02:37.338 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:37.338 INFO:teuthology.orchestra.run.smithi183.stdout:Installed: 2024-09-11T08:02:37.339 INFO:teuthology.orchestra.run.smithi183.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T08:02:37.339 INFO:teuthology.orchestra.run.smithi183.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-11T08:02:37.339 INFO:teuthology.orchestra.run.smithi183.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-11T08:02:37.339 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:02:37.339 INFO:teuthology.orchestra.run.smithi183.stdout:Complete! 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout:Installed: 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:02:37.566 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-09-11T08:02:37.598 DEBUG:teuthology.parallel:result is None 2024-09-11T08:02:37.867 DEBUG:teuthology.parallel:result is None 2024-09-11T08:02:37.867 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-11T08:02:37.881 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-11T08:02:37.881 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:02:37.881 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:02:37.899 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T08:02:37.900 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_1 2024-09-11T08:02:37.953 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T08:02:37.953 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:37.953 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:02:36.514123454 +0000 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:37.954 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:37.954 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T08:02:38.019 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:02:38.019 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:02:38.019 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000373553 s, 1.4 MB/s 2024-09-11T08:02:38.021 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T08:02:38.078 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_2 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 975 Links: 1 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:02:36.515123503 +0000 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.134 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.135 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T08:02:38.199 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:02:38.199 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:02:38.199 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.00021542 s, 2.4 MB/s 2024-09-11T08:02:38.200 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T08:02:38.257 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_3 2024-09-11T08:02:38.313 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:02:36.515123503 +0000 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.314 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:36.258111014 +0000 2024-09-11T08:02:38.314 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T08:02:38.377 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:02:38.378 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:02:38.378 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000200762 s, 2.6 MB/s 2024-09-11T08:02:38.379 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T08:02:38.437 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_4 2024-09-11T08:02:38.493 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T08:02:38.493 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-11T08:02:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:38.494 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:38.494 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:02:36.516123552 +0000 2024-09-11T08:02:38.494 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:36.259111062 +0000 2024-09-11T08:02:38.494 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:36.260111111 +0000 2024-09-11T08:02:38.494 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:36.259111062 +0000 2024-09-11T08:02:38.494 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T08:02:38.557 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:02:38.557 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:02:38.558 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000161404 s, 3.2 MB/s 2024-09-11T08:02:38.559 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T08:02:38.615 DEBUG:teuthology.orchestra.run.smithi003:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-11T08:02:38.766 INFO:teuthology.orchestra.run.smithi003.stdout:loop 2024-09-11T08:02:38.767 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_1... 2024-09-11T08:02:38.768 DEBUG:teuthology.orchestra.run.smithi003:> 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 /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-11T08:02:38.802 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:38.823 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_1 2024-09-11T08:02:38.833 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:38.879 INFO:teuthology.orchestra.run.smithi003.stdout:connecting to device: nvme1 2024-09-11T08:02:38.881 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_2... 2024-09-11T08:02:38.881 DEBUG:teuthology.orchestra.run.smithi003:> 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 /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-11T08:02:38.957 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:38.978 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_2 2024-09-11T08:02:38.988 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:39.024 INFO:teuthology.orchestra.run.smithi003.stdout:connecting to device: nvme2 2024-09-11T08:02:39.026 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_3... 2024-09-11T08:02:39.026 DEBUG:teuthology.orchestra.run.smithi003:> 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 /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-11T08:02:39.102 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:39.123 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_3 2024-09-11T08:02:39.133 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:39.169 INFO:teuthology.orchestra.run.smithi003.stdout:connecting to device: nvme3 2024-09-11T08:02:39.171 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_4... 2024-09-11T08:02:39.171 DEBUG:teuthology.orchestra.run.smithi003:> 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 /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-11T08:02:39.247 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:39.267 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_4 2024-09-11T08:02:39.277 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-11T08:02:39.314 INFO:teuthology.orchestra.run.smithi003.stdout:connecting to device: nvme4 2024-09-11T08:02:39.315 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:02:39.315 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:02:39.371 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme list -o json 2024-09-11T08:02:39.438 INFO:teuthology.orchestra.run.smithi003.stdout:{ 2024-09-11T08:02:39.438 INFO:teuthology.orchestra.run.smithi003.stdout: "Devices":[ 2024-09-11T08:02:39.438 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-11T08:02:39.438 INFO:teuthology.orchestra.run.smithi003.stdout: "NameSpace":1, 2024-09-11T08:02:39.438 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "GenericPath":"/dev/ng4n1", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber":"d808658ddcdfcc494ff5", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "SectorSize":512 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "NameSpace":1, 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "GenericPath":"/dev/ng3n1", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:39.439 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber":"302f31195cae6746d703", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "SectorSize":512 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "NameSpace":1, 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "GenericPath":"/dev/ng2n1", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber":"b7bb6e906eba02105946", 2024-09-11T08:02:39.440 INFO:teuthology.orchestra.run.smithi003.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "SectorSize":512 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "NameSpace":1, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "GenericPath":"/dev/ng1n1", 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber":"a4dc976c151ecfbf8889", 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:39.441 INFO:teuthology.orchestra.run.smithi003.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "SectorSize":512 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "NameSpace":1, 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "GenericPath":"/dev/ng0n1", 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware":"8DV101H0", 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber":"CVFT5330009Z400BGN", 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "UsedBytes":400088457216, 2024-09-11T08:02:39.442 INFO:teuthology.orchestra.run.smithi003.stdout: "MaximumLBA":781422768, 2024-09-11T08:02:39.443 INFO:teuthology.orchestra.run.smithi003.stdout: "PhysicalSize":400088457216, 2024-09-11T08:02:39.443 INFO:teuthology.orchestra.run.smithi003.stdout: "SectorSize":512 2024-09-11T08:02:39.443 INFO:teuthology.orchestra.run.smithi003.stdout: } 2024-09-11T08:02:39.443 INFO:teuthology.orchestra.run.smithi003.stdout: ] 2024-09-11T08:02:39.443 INFO:teuthology.orchestra.run.smithi003.stdout:} 2024-09-11T08:02:39.444 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-11T08:02:39.444 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:02:39.444 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/scratch_devs 2024-09-11T08:02:39.509 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:02:39.509 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:02:39.528 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-11T08:02:39.529 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_1 2024-09-11T08:02:39.585 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-11T08:02:39.585 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:02:36.344846997 +0000 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:39.586 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:39.586 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-11T08:02:39.653 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:02:39.653 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:02:39.653 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000202323 s, 2.5 MB/s 2024-09-11T08:02:39.655 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-11T08:02:39.712 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_2 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 973 Links: 1 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:02:36.344846997 +0000 2024-09-11T08:02:39.769 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.770 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.770 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.770 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-11T08:02:39.834 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:02:39.835 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:02:39.835 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000176179 s, 2.9 MB/s 2024-09-11T08:02:39.836 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-11T08:02:39.893 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_3 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:02:36.345846820 +0000 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.950 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:36.090892039 +0000 2024-09-11T08:02:39.951 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-11T08:02:40.015 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:02:40.015 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:02:40.015 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000215778 s, 2.4 MB/s 2024-09-11T08:02:40.016 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-11T08:02:40.073 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_4 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:device_t:s0 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:02:36.345846820 +0000 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:40.129 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:40.130 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:36.091891862 +0000 2024-09-11T08:02:40.130 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-11T08:02:40.193 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:02:40.193 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:02:40.193 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000209256 s, 2.4 MB/s 2024-09-11T08:02:40.194 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-11T08:02:40.250 DEBUG:teuthology.orchestra.run.smithi183:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-11T08:02:40.387 INFO:teuthology.orchestra.run.smithi183.stdout:loop 2024-09-11T08:02:40.389 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_1... 2024-09-11T08:02:40.389 DEBUG:teuthology.orchestra.run.smithi183:> 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 /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-11T08:02:40.422 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.441 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_1 2024-09-11T08:02:40.451 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.496 INFO:teuthology.orchestra.run.smithi183.stdout:connecting to device: nvme1 2024-09-11T08:02:40.498 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_2... 2024-09-11T08:02:40.498 DEBUG:teuthology.orchestra.run.smithi183:> 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 /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-11T08:02:40.572 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.594 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_2 2024-09-11T08:02:40.604 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.635 INFO:teuthology.orchestra.run.smithi183.stdout:connecting to device: nvme2 2024-09-11T08:02:40.637 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_3... 2024-09-11T08:02:40.637 DEBUG:teuthology.orchestra.run.smithi183:> 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 /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-11T08:02:40.711 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.732 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_3 2024-09-11T08:02:40.742 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.774 INFO:teuthology.orchestra.run.smithi183.stdout:connecting to device: nvme3 2024-09-11T08:02:40.776 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_4... 2024-09-11T08:02:40.776 DEBUG:teuthology.orchestra.run.smithi183:> 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 /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-11T08:02:40.849 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.874 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_4 2024-09-11T08:02:40.884 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-09-11T08:02:40.919 INFO:teuthology.orchestra.run.smithi183.stdout:connecting to device: nvme4 2024-09-11T08:02:40.922 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:02:40.922 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:02:40.977 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme list -o json 2024-09-11T08:02:41.052 INFO:teuthology.orchestra.run.smithi183.stdout:{ 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "Devices":[ 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: { 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "NameSpace":1, 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "GenericPath":"/dev/ng4n1", 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "SerialNumber":"ee7a7c40f3c9e38130b5", 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: "SectorSize":512 2024-09-11T08:02:41.053 INFO:teuthology.orchestra.run.smithi183.stdout: }, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: { 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "NameSpace":1, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "GenericPath":"/dev/ng3n1", 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "SerialNumber":"3409f6be9dc4aeebdcb9", 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "SectorSize":512 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: }, 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: { 2024-09-11T08:02:41.054 INFO:teuthology.orchestra.run.smithi183.stdout: "NameSpace":1, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "GenericPath":"/dev/ng2n1", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "SerialNumber":"3c92070c9200bec3337e", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "SectorSize":512 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: }, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: { 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "NameSpace":1, 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "GenericPath":"/dev/ng1n1", 2024-09-11T08:02:41.055 INFO:teuthology.orchestra.run.smithi183.stdout: "Firmware":"5.14.0-5", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "ModelNumber":"Linux", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "SerialNumber":"4e16a1a0884b4ccf92b7", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "UsedBytes":95995035648, 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "MaximumLBA":187490304, 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "PhysicalSize":95995035648, 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "SectorSize":512 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: }, 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: { 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "NameSpace":1, 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "GenericPath":"/dev/ng0n1", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "Firmware":"8DV101H0", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-11T08:02:41.056 INFO:teuthology.orchestra.run.smithi183.stdout: "SerialNumber":"PHFT620500QJ400BGN", 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: "UsedBytes":400088457216, 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: "MaximumLBA":781422768, 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: "PhysicalSize":400088457216, 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: "SectorSize":512 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: } 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout: ] 2024-09-11T08:02:41.057 INFO:teuthology.orchestra.run.smithi183.stdout:} 2024-09-11T08:02:41.058 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-11T08:02:41.058 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:02:41.058 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/scratch_devs 2024-09-11T08:02:41.124 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-11T08:02:41.206 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': 'd0e6828a2016d48cf25ad84064e50742bb1c39b9'} 2024-09-11T08:02:41.207 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T08:02:41.208 INFO:tasks.cephadm:Cluster fsid is 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:02:41.208 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-11T08:02:41.208 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-11T08:02:41.208 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi003': '172.21.15.3', 'mon.smithi183': '172.21.15.183'} 2024-09-11T08:02:41.208 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-11T08:02:41.208 DEBUG:teuthology.orchestra.run.smithi003:> sudo hostname $(hostname -s) 2024-09-11T08:02:41.239 DEBUG:teuthology.orchestra.run.smithi183:> sudo hostname $(hostname -s) 2024-09-11T08:02:41.264 INFO:tasks.cephadm:Downloading cephadm (repo https://git.ceph.com/ceph-ci.git ref d0e6828a2016d48cf25ad84064e50742bb1c39b9)... 2024-09-11T08:02:41.264 DEBUG:teuthology.orchestra.run.smithi003:> git clone https://git.ceph.com/ceph-ci.git testrepo && cd testrepo && git show d0e6828a2016d48cf25ad84064e50742bb1c39b9:src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T08:02:41.298 INFO:teuthology.orchestra.run.smithi003.stderr:Cloning into 'testrepo'... 2024-09-11T08:03:39.455 INFO:teuthology.orchestra.run.smithi003.stderr:Updating files: 91% (11648/12697) Updating files: 92% (11682/12697) Updating files: 93% (11809/12697) Updating files: 94% (11936/12697) Updating files: 95% (12063/12697) Updating files: 96% (12190/12697) Updating files: 97% (12317/12697) Updating files: 98% (12444/12697) Updating files: 99% (12571/12697) Updating files: 100% (12697/12697) Updating files: 100% (12697/12697), done. 2024-09-11T08:03:39.489 INFO:teuthology.orchestra.run.smithi003.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 11 08:03 /home/ubuntu/cephtest/cephadm 2024-09-11T08:03:39.490 DEBUG:teuthology.orchestra.run.smithi183:> git clone https://git.ceph.com/ceph-ci.git testrepo && cd testrepo && git show d0e6828a2016d48cf25ad84064e50742bb1c39b9:src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-11T08:03:39.509 INFO:teuthology.orchestra.run.smithi183.stderr:Cloning into 'testrepo'... 2024-09-11T08:04:37.169 INFO:teuthology.orchestra.run.smithi183.stdout:-rw-r--r--. 1 ubuntu ubuntu 378585 Sep 11 08:04 /home/ubuntu/cephtest/cephadm 2024-09-11T08:04:37.169 DEBUG:teuthology.orchestra.run.smithi003:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T08:04:37.190 DEBUG:teuthology.orchestra.run.smithi183:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-11T08:04:37.234 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 on all hosts... 2024-09-11T08:04:37.234 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 pull 2024-09-11T08:04:37.237 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 pull 2024-09-11T08:04:38.747 INFO:teuthology.orchestra.run.smithi003.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T08:04:40.486 INFO:teuthology.orchestra.run.smithi183.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T08:05:08.538 INFO:teuthology.orchestra.run.smithi003.stdout:{ 2024-09-11T08:05:08.538 INFO:teuthology.orchestra.run.smithi003.stdout: "ceph_version": "ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable)", 2024-09-11T08:05:08.538 INFO:teuthology.orchestra.run.smithi003.stdout: "image_id": "4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b", 2024-09-11T08:05:08.539 INFO:teuthology.orchestra.run.smithi003.stdout: "repo_digests": [ 2024-09-11T08:05:08.539 INFO:teuthology.orchestra.run.smithi003.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40" 2024-09-11T08:05:08.539 INFO:teuthology.orchestra.run.smithi003.stdout: ] 2024-09-11T08:05:08.539 INFO:teuthology.orchestra.run.smithi003.stdout:} 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout:{ 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout: "ceph_version": "ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable)", 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout: "image_id": "4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b", 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout: "repo_digests": [ 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40" 2024-09-11T08:05:08.573 INFO:teuthology.orchestra.run.smithi183.stdout: ] 2024-09-11T08:05:08.574 INFO:teuthology.orchestra.run.smithi183.stdout:} 2024-09-11T08:05:08.592 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /etc/ceph 2024-09-11T08:05:08.625 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /etc/ceph 2024-09-11T08:05:08.652 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 777 /etc/ceph 2024-09-11T08:05:08.693 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 777 /etc/ceph 2024-09-11T08:05:08.718 INFO:tasks.cephadm:Writing seed config... 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-11T08:05:08.719 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-11T08:05:08.720 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-11T08:05:08.720 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:05:08.720 DEBUG:teuthology.orchestra.run.smithi003:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-11T08:05:08.751 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 = 37f299f8-7014-11ef-bcea-c7b262605968 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-11T08:05:08.751 DEBUG:teuthology.orchestra.run.smithi003:mon.smithi003> sudo journalctl -f -n 0 -u ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service 2024-09-11T08:05:08.793 INFO:tasks.cephadm:Bootstrapping... 2024-09-11T08:05:08.793 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 -v bootstrap --fsid 37f299f8-7014-11ef-bcea-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.3 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:05:09.001 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-09-11T08:05:09.002 INFO:teuthology.orchestra.run.smithi003.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9', '-v', 'bootstrap', '--fsid', '37f299f8-7014-11ef-bcea-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.3', '--skip-admin-label'] 2024-09-11T08:05:09.026 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stdout 5.2.2 2024-09-11T08:05:09.027 INFO:teuthology.orchestra.run.smithi003.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-11T08:05:09.027 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying podman|docker is present... 2024-09-11T08:05:09.049 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stdout 5.2.2 2024-09-11T08:05:09.052 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying lvm2 is present... 2024-09-11T08:05:09.053 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying time synchronization is in place... 2024-09-11T08:05:09.057 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T08:05:09.057 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T08:05:09.064 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T08:05:09.064 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:05:09.072 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout enabled 2024-09-11T08:05:09.078 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout active 2024-09-11T08:05:09.078 INFO:teuthology.orchestra.run.smithi003.stdout:Unit chronyd.service is enabled and running 2024-09-11T08:05:09.078 INFO:teuthology.orchestra.run.smithi003.stdout:Repeating the final host check... 2024-09-11T08:05:09.101 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stdout 5.2.2 2024-09-11T08:05:09.101 INFO:teuthology.orchestra.run.smithi003.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-11T08:05:09.101 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl is present 2024-09-11T08:05:09.101 INFO:teuthology.orchestra.run.smithi003.stdout:lvcreate is present 2024-09-11T08:05:09.108 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-11T08:05:09.108 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-11T08:05:09.115 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-11T08:05:09.115 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:05:09.122 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout enabled 2024-09-11T08:05:09.129 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout active 2024-09-11T08:05:09.129 INFO:teuthology.orchestra.run.smithi003.stdout:Unit chronyd.service is enabled and running 2024-09-11T08:05:09.129 INFO:teuthology.orchestra.run.smithi003.stdout:Host looks OK 2024-09-11T08:05:09.130 INFO:teuthology.orchestra.run.smithi003.stdout:Cluster fsid: 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:09.130 INFO:teuthology.orchestra.run.smithi003.stdout:Acquiring lock 139840296765040 on /run/cephadm/37f299f8-7014-11ef-bcea-c7b262605968.lock 2024-09-11T08:05:09.130 INFO:teuthology.orchestra.run.smithi003.stdout:Lock 139840296765040 acquired on /run/cephadm/37f299f8-7014-11ef-bcea-c7b262605968.lock 2024-09-11T08:05:09.130 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying IP 172.21.15.3 port 3300 ... 2024-09-11T08:05:09.130 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying IP 172.21.15.3 port 6789 ... 2024-09-11T08:05:09.131 INFO:teuthology.orchestra.run.smithi003.stdout:Base mon IP(s) is [172.21.15.3:3300, 172.21.15.3:6789], mon addrv is [v2:172.21.15.3:3300,v1:172.21.15.3:6789] 2024-09-11T08:05:09.134 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.3 metric 100 2024-09-11T08:05:09.134 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.3 metric 100 2024-09-11T08:05:09.137 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-11T08:05:09.137 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-11T08:05:09.137 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1793sec hoplimit 64 pref medium 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:15dc/64 scope link 2024-09-11T08:05:09.140 INFO:teuthology.orchestra.run.smithi003.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-11T08:05:09.141 INFO:teuthology.orchestra.run.smithi003.stdout:Mon IP `172.21.15.3` is in CIDR network `172.21.0.0/20` 2024-09-11T08:05:09.141 INFO:teuthology.orchestra.run.smithi003.stdout:Mon IP `172.21.15.3` is in CIDR network `172.21.0.0/20` 2024-09-11T08:05:09.141 INFO:teuthology.orchestra.run.smithi003.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-11T08:05:09.141 INFO:teuthology.orchestra.run.smithi003.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-11T08:05:09.142 INFO:teuthology.orchestra.run.smithi003.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stdout 4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9... 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Getting image source signatures 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Copying blob sha256:0d2f264d63cec2f6fb0f85eed7b2c8c5b4db3ab9edd9d71a74c04647294a553f 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Copying config sha256:4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b 2024-09-11T08:05:09.629 INFO:teuthology.orchestra.run.smithi003.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-11T08:05:10.525 INFO:teuthology.orchestra.run.smithi003.stdout:ceph: stdout ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable) 2024-09-11T08:05:10.525 INFO:teuthology.orchestra.run.smithi003.stdout:Ceph version: ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable) 2024-09-11T08:05:10.525 INFO:teuthology.orchestra.run.smithi003.stdout:Extracting ceph user uid/gid from container image... 2024-09-11T08:05:11.455 INFO:teuthology.orchestra.run.smithi003.stdout:stat: stdout 167 167 2024-09-11T08:05:11.455 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial keys... 2024-09-11T08:05:12.343 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQA3T+Fm6mXYLxAAYLuBafU25QX9b25I/LR/Yw== 2024-09-11T08:05:13.333 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQA4T+FmpeA4JhAA0n5k9cqrKnMwzUosFUeBkg== 2024-09-11T08:05:14.212 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQA5T+Fm2BYEKRAAa13O1x5rCzhh9A00z4zWpQ== 2024-09-11T08:05:14.213 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial monmap... 2024-09-11T08:05:15.160 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-11T08:05:15.160 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = octopus 2024-09-11T08:05:15.160 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:monmaptool for smithi003 [v2:172.21.15.3:3300,v1:172.21.15.3:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:setting min_mon_release = octopus 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: set fsid to 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:05:15.161 INFO:teuthology.orchestra.run.smithi003.stdout:Creating mon... 2024-09-11T08:05:16.108 INFO:teuthology.orchestra.run.smithi003.stdout:create mon.smithi003 on 2024-09-11T08:05:16.495 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-11T08:05:16.669 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target. 2024-09-11T08:05:16.670 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target → /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target. 2024-09-11T08:05:16.874 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003 2024-09-11T08:05:16.874 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to reset failed state of unit ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service: Unit ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service not loaded. 2024-09-11T08:05:17.054 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target.wants/ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service → /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968@.service. 2024-09-11T08:05:17.105 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 systemd[1]: Starting Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:05:17.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 podman[25010]: 2024-09-11 08:05:17.205354902 +0000 UTC m=+0.016475253 image pull 4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T08:05:17.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 podman[25010]: 2024-09-11 08:05:17.305494657 +0000 UTC m=+0.116614999 container create 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-09-11T08:05:17.581 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T08:05:17.581 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout disabled 2024-09-11T08:05:17.589 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T08:05:17.589 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:05:17.589 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld.service is not enabled 2024-09-11T08:05:17.589 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T08:05:17.590 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mon to start... 2024-09-11T08:05:17.590 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mon... 2024-09-11T08:05:17.664 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 podman[25010]: 2024-09-11 08:05:17.507688251 +0000 UTC m=+0.318808593 container init 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, CEPH_POINT_RELEASE=) 2024-09-11T08:05:17.664 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 podman[25010]: 2024-09-11 08:05:17.512103928 +0000 UTC m=+0.323224271 container start 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, ceph=True, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, io.buildah.version=1.37.2) 2024-09-11T08:05:17.664 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 ceph-mon[25030]: mkfs 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:17.665 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 ceph-mon[25030]: mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-11T08:05:17.665 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 bash[25010]: 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d 2024-09-11T08:05:17.665 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:17 smithi003 systemd[1]: Started Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968. 2024-09-11T08:05:18.669 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout cluster: 2024-09-11T08:05:18.669 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout id: 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:18.669 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-11T08:05:18.669 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout services: 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi003 (age 0.566108s) 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout data: 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout pgs: 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:mon is available 2024-09-11T08:05:18.670 INFO:teuthology.orchestra.run.smithi003.stdout:Assimilating anything we can from ceph.conf... 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: monmap e1: 1 mons at {smithi003=[v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: fsmap 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: osdmap e1: 0 total, 0 up, 0 in 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: mgrmap e1: no daemons active 2024-09-11T08:05:18.782 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:18 smithi003 ceph-mon[25030]: from='client.? 172.21.15.3:0/1660503851' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-09-11T08:05:19.691 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:19.691 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T08:05:19.691 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout fsid = 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.3:3300,v1:172.21.15.3:6789] 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T08:05:19.692 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T08:05:19.693 INFO:teuthology.orchestra.run.smithi003.stdout:Generating new minimal ceph.conf... 2024-09-11T08:05:19.813 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:19 smithi003 ceph-mon[25030]: from='client.? 172.21.15.3:0/1820210847' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-11T08:05:19.813 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:19 smithi003 ceph-mon[25030]: from='client.? 172.21.15.3:0/1820210847' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-11T08:05:20.744 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:20 smithi003 ceph-mon[25030]: from='client.? 172.21.15.3:0/1742769034' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:05:20.745 INFO:teuthology.orchestra.run.smithi003.stdout:Restarting the monitor... 2024-09-11T08:05:21.038 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:20 smithi003 systemd[1]: Stopping Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:05:21.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003[25026]: 2024-09-11T08:05:21.037+0000 7f52ec91c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi003 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T08:05:21.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003[25026]: 2024-09-11T08:05:21.037+0000 7f52ec91c640 -1 mon.smithi003@0(leader) e1 *** Got Signal Terminated *** 2024-09-11T08:05:21.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 podman[25274]: 2024-09-11 08:05:21.15005564 +0000 UTC m=+0.234225354 container died 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS) 2024-09-11T08:05:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 podman[25274]: 2024-09-11 08:05:21.511954022 +0000 UTC m=+0.596123737 container cleanup 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, CEPH_POINT_RELEASE=, GIT_CLEAN=True, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T08:05:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 bash[25274]: ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003 2024-09-11T08:05:22.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 podman[25286]: 2024-09-11 08:05:21.754417625 +0000 UTC m=+0.594726581 container remove 37c61f845db770026d01e89b7a0760f4a425abb7742d0d6824f249d0f177a95d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2) 2024-09-11T08:05:22.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 systemd[1]: ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service: Deactivated successfully. 2024-09-11T08:05:22.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 systemd[1]: Stopped Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968. 2024-09-11T08:05:22.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:21 smithi003 systemd[1]: Starting Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 podman[25380]: 2024-09-11 08:05:22.096729599 +0000 UTC m=+0.103161620 container create fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 podman[25380]: 2024-09-11 08:05:22.010366872 +0000 UTC m=+0.016798904 image pull 4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 podman[25380]: 2024-09-11 08:05:22.315701279 +0000 UTC m=+0.322133310 container init fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, io.buildah.version=1.37.2) 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 podman[25380]: 2024-09-11 08:05:22.318952916 +0000 UTC m=+0.325384937 container start fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, org.label-schema.build-date=20240731, ceph=True, CEPH_POINT_RELEASE=, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0) 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: set uid:gid to 167:167 (ceph:ceph) 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable), process ceph-mon, pid 2 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: pidfile_write: ignore empty --pid-file 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: load: jerasure load: lrc 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: RocksDB version: 6.15.5 2024-09-11T08:05:22.377 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Compile date Sep 10 2024 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: DB SUMMARY 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: DB Session ID: CMKF6PNZ87RPZFV85CPP 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: CURRENT file: CURRENT 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: IDENTITY file: IDENTITY 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: MANIFEST file: MANIFEST-000009 size: 131 Bytes 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi003/store.db dir, Total Num: 1, files: 000008.sst 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi003/store.db: 000010.log size: 82910 ; 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.error_if_exists: 0 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.create_if_missing: 0 2024-09-11T08:05:22.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.paranoid_checks: 1 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.env: 0x5634f5de7440 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.fs: Posix File System 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.info_log: 0x5634f83d70c0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_file_opening_threads: 16 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.statistics: (nil) 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.use_fsync: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_log_file_size: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.keep_log_file_num: 1000 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.recycle_log_file_num: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_fallocate: 1 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_mmap_reads: 0 2024-09-11T08:05:22.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_mmap_writes: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.use_direct_reads: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.create_missing_column_families: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.db_log_dir: 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi003/store.db 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T08:05:22.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.advise_random_on_open: 1 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.db_write_buffer_size: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.write_buffer_manager: 0x5634f8494870 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.rate_limiter: (nil) 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.wal_recovery_mode: 2 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.enable_thread_tracking: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.enable_pipelined_write: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.unordered_write: 0 2024-09-11T08:05:22.381 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.row_cache: None 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.wal_filter: None 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_ingest_behind: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.preserve_deletes: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.two_write_queues: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.manual_wal_flush: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.atomic_flush: 0 2024-09-11T08:05:22.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.log_readahead_size: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.best_efforts_recovery: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.allow_data_in_errors: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.db_host_id: __hostname__ 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_background_jobs: 2 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_background_compactions: -1 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_subcompactions: 1 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T08:05:22.383 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_total_wal_size: 0 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_open_files: -1 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bytes_per_sync: 0 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_readahead_size: 0 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_background_flushes: -1 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Compression algorithms supported: 2024-09-11T08:05:22.384 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kZSTD supported: 0 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kXpressCompression supported: 0 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kBZip2Compression supported: 0 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kLZ4Compression supported: 1 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kZlibCompression supported: 1 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kLZ4HCCompression supported: 1 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: kSnappyCompression supported: 1 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000009 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.merge_operator: 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_filter: None 2024-09-11T08:05:22.385 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_filter_factory: None 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.sst_partitioner_factory: None 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5634f837da38) 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: cache_index_and_filter_blocks: 1 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: pin_top_level_index_and_filter: 1 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: index_type: 0 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: data_block_index_type: 0 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: index_shortening: 1 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: hash_index_allow_collision: 1 2024-09-11T08:05:22.386 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: checksum: 1 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: no_block_cache: 0 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_cache: 0x5634f83b31f0 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_cache_name: BinnedLRUCache 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_cache_options: 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: capacity : 536870912 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: num_shard_bits : 4 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: strict_capacity_limit : 0 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: high_pri_pool_ratio: 0.000 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_cache_compressed: (nil) 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: persistent_cache: (nil) 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_size: 4096 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_size_deviation: 10 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_restart_interval: 16 2024-09-11T08:05:22.387 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: index_block_restart_interval: 1 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: metadata_block_size: 4096 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: partition_filters: 0 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: use_delta_encoding: 1 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: whole_key_filtering: 1 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: verify_compression: 0 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: read_amp_bytes_per_bit: 0 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: format_version: 4 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: enable_index_compression: 1 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: block_align: 0 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.write_buffer_size: 33554432 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_write_buffer_number: 2 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression: NoCompression 2024-09-11T08:05:22.388 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression: Disabled 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.prefix_extractor: nullptr 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.num_levels: 7 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T08:05:22.389 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.level: 32767 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.strategy: 0 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compression_opts.enabled: false 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.target_file_size_base: 67108864 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T08:05:22.390 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.arena_block_size: 4194304 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-11T08:05:22.391 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.disable_auto_compactions: 0 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.inplace_update_support: 0 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T08:05:22.392 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.bloom_locality: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.max_successive_merges: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.paranoid_file_checks: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.force_consistency_checks: 1 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.report_bg_io_stats: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.ttl: 2592000 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.enable_blob_files: false 2024-09-11T08:05:22.393 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.min_blob_size: 0 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.blob_file_size: 268435456 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000009 succeeded,manifest_file_number is 9, next_file_number is 11, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 5 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/version_set.cc:4082] Creating manifest 13 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726041922341955, "job": 1, "event": "recovery_started", "wal_files": [10]} 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #10 mode 2 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726041922342730, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 14, "file_size": 79746, "file_checksum": "", "file_checksum_func_name": "Unknown", "table_properties": {"data_size": 77981, "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": 9616, "raw_average_key_size": 46, "raw_value_size": 72412, "raw_average_value_size": 353, "num_data_blocks": 10, "num_entries": 205, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1726041922, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "c58a4adb-6594-4039-9a9c-5373e9621662", "db_session_id": "CMKF6PNZ87RPZFV85CPP"}} 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/version_set.cc:4082] Creating manifest 15 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726041922343079, "job": 1, "event": "recovery_finished"} 2024-09-11T08:05:22.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-smithi003/store.db/000010.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x5634f83e6700 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: DB pointer 0x5634f83b6000 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** DB Stats ** 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** Compaction Stats [default] ** 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.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 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: L0 2/0 79.70 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Sum 2/0 79.70 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.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 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** Compaction Stats [default] ** 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.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 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.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 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T08:05:22.396 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Cumulative compaction: 0.00 GB write, 24.08 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Interval compaction: 0.00 GB write, 24.08 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** Compaction Stats [default] ** 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.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 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: L0 2/0 79.70 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.397 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Sum 2/0 79.70 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** Compaction Stats [default] ** 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.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 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.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 150.6 0.00 0.00 1 0.001 0 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Cumulative compaction: 0.00 GB write, 23.86 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:05:22.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: starting mon.smithi003 rank 0 at public addrs [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] at bind addrs [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi003 fsid 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???) e1 preinit fsid 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).mds e1 new map 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).mds e1 print_map 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: e1 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: legacy client fscid: -1 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: No filesystems configured 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T08:05:22.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:05:22.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:05:22.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:05:22.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-11T08:05:22.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 bash[25380]: fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 2024-09-11T08:05:22.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 systemd[1]: Started Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968. 2024-09-11T08:05:22.400 INFO:teuthology.orchestra.run.smithi003.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-11T08:05:22.704 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-11T08:05:22.704 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: monmap e1: 1 mons at {smithi003=[v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T08:05:22.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: fsmap 2024-09-11T08:05:22.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: osdmap e1: 0 total, 0 up, 0 in 2024-09-11T08:05:22.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:22 smithi003 ceph-mon[25399]: mgrmap e1: no daemons active 2024-09-11T08:05:23.467 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-11T08:05:23.467 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:05:23.467 INFO:teuthology.orchestra.run.smithi003.stdout:Creating mgr... 2024-09-11T08:05:23.468 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-11T08:05:23.469 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-11T08:05:23.469 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-11T08:05:23.670 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-37f299f8-7014-11ef-bcea-c7b262605968@mgr.smithi003.abfhzj 2024-09-11T08:05:23.670 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to reset failed state of unit ceph-37f299f8-7014-11ef-bcea-c7b262605968@mgr.smithi003.abfhzj.service: Unit ceph-37f299f8-7014-11ef-bcea-c7b262605968@mgr.smithi003.abfhzj.service not loaded. 2024-09-11T08:05:23.836 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968.target.wants/ceph-37f299f8-7014-11ef-bcea-c7b262605968@mgr.smithi003.abfhzj.service → /etc/systemd/system/ceph-37f299f8-7014-11ef-bcea-c7b262605968@.service. 2024-09-11T08:05:24.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:23 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3088790121' entity='client.admin' 2024-09-11T08:05:24.375 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T08:05:24.376 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout disabled 2024-09-11T08:05:24.384 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T08:05:24.385 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:05:24.385 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld.service is not enabled 2024-09-11T08:05:24.385 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to enable service . firewalld.service is not available 2024-09-11T08:05:24.396 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T08:05:24.396 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout disabled 2024-09-11T08:05:24.404 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T08:05:24.404 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:05:24.404 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld.service is not enabled 2024-09-11T08:05:24.404 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-11T08:05:24.405 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr to start... 2024-09-11T08:05:24.405 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr... 2024-09-11T08:05:25.078 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1407926008' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T08:05:25.598 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:25.598 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "37f299f8-7014-11ef-bcea-c7b262605968", 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-11T08:05:25.599 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T08:05:25.600 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T08:05:25.601 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:25.602 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T08:05:17.549179+0000", 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:05:25.603 INFO:teuthology.orchestra.run.smithi003.stdout:mgr not available, waiting (1/15)... 2024-09-11T08:05:28.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:28 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2416727314' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "37f299f8-7014-11ef-bcea-c7b262605968", 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T08:05:28.613 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T08:05:28.614 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T08:05:28.615 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T08:05:28.616 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T08:05:17.549179+0000", 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:05:28.617 INFO:teuthology.orchestra.run.smithi003.stdout:mgr not available, waiting (2/15)... 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: Activating manager daemon smithi003.abfhzj 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: mgrmap e2: smithi003.abfhzj(active, starting, since 0.00292398s) 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:05:29.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi003.abfhzj", "id": "smithi003.abfhzj"}]: dispatch 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: Manager daemon smithi003.abfhzj is now available 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/mirror_snapshot_schedule"}]: dispatch 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/trash_purge_schedule"}]: dispatch 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:29.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:29 smithi003 ceph-mon[25399]: from='mgr.14100 172.21.15.3:0/3164109514' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:31.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:30 smithi003 ceph-mon[25399]: mgrmap e3: smithi003.abfhzj(active, since 1.00726s) 2024-09-11T08:05:31.835 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:31.835 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:05:31.835 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "37f299f8-7014-11ef-bcea-c7b262605968", 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:31.836 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "quincy", 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-11T08:05:31.837 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-11T08:05:31.838 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:31.839 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-11T08:05:17.549179+0000", 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:05:31.840 INFO:teuthology.orchestra.run.smithi003.stdout:mgr is available 2024-09-11T08:05:32.129 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:31 smithi003 ceph-mon[25399]: mgrmap e4: smithi003.abfhzj(active, since 2s) 2024-09-11T08:05:32.129 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:31 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2279475454' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-09-11T08:05:32.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:32 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2071008554' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-09-11T08:05:33.004 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:33.004 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [global] 2024-09-11T08:05:33.004 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout fsid = 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:33.004 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-11T08:05:33.004 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [osd] 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-11T08:05:33.005 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling cephadm module... 2024-09-11T08:05:34.165 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:33 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/4146211012' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-09-11T08:05:35.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:34 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/4146211012' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-11T08:05:35.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:34 smithi003 ceph-mon[25399]: mgrmap e5: smithi003.abfhzj(active, since 5s) 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: Active manager daemon smithi003.abfhzj restarted 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: Activating manager daemon smithi003.abfhzj 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: osdmap e2: 0 total, 0 up, 0 in 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: mgrmap e6: smithi003.abfhzj(active, starting, since 0.00371684s) 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi003.abfhzj", "id": "smithi003.abfhzj"}]: dispatch 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T08:05:38.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: Manager daemon smithi003.abfhzj is now available 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/mirror_snapshot_schedule"}]: dispatch 2024-09-11T08:05:38.774 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:38 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/trash_purge_schedule"}]: dispatch 2024-09-11T08:05:39.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:39 smithi003 ceph-mon[25399]: Found migration_current of "None". Setting to last migration. 2024-09-11T08:05:39.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:39 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3387625415' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-11T08:05:39.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:39 smithi003 ceph-mon[25399]: mgrmap e7: smithi003.abfhzj(active, since 1.00503s) 2024-09-11T08:05:41.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:41 smithi003 ceph-mon[25399]: mgrmap e8: smithi003.abfhzj(active, since 2s) 2024-09-11T08:05:41.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:41 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:41.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:41 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:42 smithi003 ceph-mon[25399]: [11/Sep/2024:08:05:41] ENGINE Bus STARTING 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:42 smithi003 ceph-mon[25399]: [11/Sep/2024:08:05:41] ENGINE Serving on https://172.21.15.3:7150 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:42 smithi003 ceph-mon[25399]: [11/Sep/2024:08:05:41] ENGINE Bus STARTED 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:42 smithi003 ceph-mon[25399]: [11/Sep/2024:08:05:41] ENGINE Error in HTTPServer.serve 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Traceback (most recent call last): 2024-09-11T08:05:42.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._connections.run(self.expiration_interval) 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._run(expiration_interval) 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s = self.context.wrap_socket( 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: return self.sslsocket_class._create( 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self.do_handshake() 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T08:05:42.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._sslobj.do_handshake() 2024-09-11T08:05:42.970 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 6, 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "active_name": "smithi003.abfhzj", 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T08:05:45.335 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:05:45.336 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for the mgr to restart... 2024-09-11T08:05:45.336 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr epoch 6... 2024-09-11T08:05:46.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:45 smithi003 ceph-mon[25399]: from='client.14128 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-11T08:05:46.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:45 smithi003 ceph-mon[25399]: from='client.14128 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 8, 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:mgr epoch 6 is available 2024-09-11T08:05:46.290 INFO:teuthology.orchestra.run.smithi003.stdout:Setting orchestrator backend to cephadm... 2024-09-11T08:05:47.995 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:47 smithi003 ceph-mon[25399]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:47.996 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:47 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:47.996 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:47 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:05:48.609 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-11T08:05:48.609 INFO:teuthology.orchestra.run.smithi003.stdout:Generating ssh key... 2024-09-11T08:05:49.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:48 smithi003 ceph-mon[25399]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:50.695 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:50 smithi003 ceph-mon[25399]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:50.695 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:50 smithi003 ceph-mon[25399]: Generating ssh key... 2024-09-11T08:05:50.695 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:50 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:50.695 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:50 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:51.631 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwj6Yx3HnpMcq4klYVl2W2kf6AkAuIfMWcBEKJoTtU8oQJztAK798Ly25TmK0jVg+YNWA/0WJFZbxZjdAx7P3xBGwuKcGsHt4VAuO5FhEgYYpcJMKHmwsgcu3/6LdnBcc2vVVkKrIIsa2484PINYBEaCiiA0AOe9bdyoQCbXoiJUG2fhH/NP/EMs0i0ILzl5kzkAprB4QKVcPiukX5ARrE+bwbTrp6rWTxju/XPA3qY+43ImgP5FzNngfL1o0No1QaQJdarqNc4auAbIdu8RdXS9UaCgeh2oYaF/avPL9W0vYXzDoTYpqwBhH5xUzQzuj76UvOKM050vJkZD8WfkMBCNfuQUOipz+whj862EneNQgtoxGoYiyn407bK1ZZURXHxt2ENec0Sy1cfYEReutHGJkHdfjI5L4aEr9pRDm0lXAsPaUrTmLIUCGCd+DwqmSoXuIOKuCGa0jiXUDh0WS4MiGMiMMHS6wr/2tP+qeWe2fDi2MZSOJkFQwJ3lgLwBM= ceph-37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:05:51.631 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-11T08:05:51.631 INFO:teuthology.orchestra.run.smithi003.stdout:Adding key to root@localhost authorized_keys... 2024-09-11T08:05:51.641 INFO:teuthology.orchestra.run.smithi003.stdout:Adding host smithi003... 2024-09-11T08:05:51.869 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:51 smithi003 ceph-mon[25399]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:53.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:52 smithi003 ceph-mon[25399]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi003", "addr": "172.21.15.3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:54.136 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:54 smithi003 ceph-mon[25399]: Deploying cephadm binary to smithi003 2024-09-11T08:05:56.180 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Added host 'smithi003' with addr '172.21.15.3' 2024-09-11T08:05:56.180 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying mon service with default placement... 2024-09-11T08:05:56.762 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:56 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:56.762 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:56 smithi003 ceph-mon[25399]: Added host smithi003 2024-09-11T08:05:56.762 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:56 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:05:57.589 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-11T08:05:57.589 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying mgr service with default placement... 2024-09-11T08:05:57.939 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:57 smithi003 ceph-mon[25399]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:57.940 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:57 smithi003 ceph-mon[25399]: Saving service mon spec with placement count:5 2024-09-11T08:05:57.940 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:57 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:58.914 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-11T08:05:58.915 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying crash service with default placement... 2024-09-11T08:05:59.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:59 smithi003 ceph-mon[25399]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:05:59.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:59 smithi003 ceph-mon[25399]: Saving service mgr spec with placement count:2 2024-09-11T08:05:59.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:59 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:05:59.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:05:59 smithi003 ceph-mon[25399]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:00.759 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-11T08:06:00.759 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying prometheus service with default placement... 2024-09-11T08:06:01.036 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:00 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:01.036 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:00 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:01.036 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:00 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:02.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:01 smithi003 ceph-mon[25399]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:02.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:01 smithi003 ceph-mon[25399]: Saving service crash spec with placement * 2024-09-11T08:06:02.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:01 smithi003 ceph-mon[25399]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:02.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:01 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:02.108 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-11T08:06:02.108 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying grafana service with default placement... 2024-09-11T08:06:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:02 smithi003 ceph-mon[25399]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:02 smithi003 ceph-mon[25399]: Saving service prometheus spec with placement count:1 2024-09-11T08:06:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:02 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:03.441 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-11T08:06:03.441 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying node-exporter service with default placement... 2024-09-11T08:06:03.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:03 smithi003 ceph-mon[25399]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:03.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:03 smithi003 ceph-mon[25399]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:03.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:03 smithi003 ceph-mon[25399]: Saving service grafana spec with placement count:1 2024-09-11T08:06:03.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:03 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:04.734 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-11T08:06:04.734 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying alertmanager service with default placement... 2024-09-11T08:06:05.299 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:05 smithi003 ceph-mon[25399]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:05.299 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:05 smithi003 ceph-mon[25399]: Saving service node-exporter spec with placement * 2024-09-11T08:06:05.299 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:05 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:05.300 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:05 smithi003 ceph-mon[25399]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:05.300 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:05 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:05.881 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-11T08:06:06.625 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:06 smithi003 ceph-mon[25399]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:06.625 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:06 smithi003 ceph-mon[25399]: Saving service alertmanager spec with placement count:1 2024-09-11T08:06:06.625 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:06 smithi003 ceph-mon[25399]: from='mgr.14118 172.21.15.3:0/2459562073' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:07.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:07 smithi003 ceph-mon[25399]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:07.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:07 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1186399625' entity='client.admin' 2024-09-11T08:06:08.890 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling the dashboard module... 2024-09-11T08:06:09.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:09 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2254670967' entity='client.admin' 2024-09-11T08:06:09.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:09 smithi003 ceph-mon[25399]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:10.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:10 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2818171432' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-09-11T08:06:11.157 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:11 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2818171432' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-11T08:06:11.157 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:11 smithi003 ceph-mon[25399]: mgrmap e9: smithi003.abfhzj(active, since 31s) 2024-09-11T08:06:12.086 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:12 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3242344521' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-09-11T08:06:12.088 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:06:12.089 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-11T08:06:12.089 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-11T08:06:12.089 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "active_name": "smithi003.abfhzj", 2024-09-11T08:06:12.090 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-11T08:06:12.090 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:06:12.090 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for the mgr to restart... 2024-09-11T08:06:12.090 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr epoch 9... 2024-09-11T08:06:14.908 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: Active manager daemon smithi003.abfhzj restarted 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: Activating manager daemon smithi003.abfhzj 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: osdmap e3: 0 total, 0 up, 0 in 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: mgrmap e10: smithi003.abfhzj(active, starting, since 0.00325401s) 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi003.abfhzj", "id": "smithi003.abfhzj"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: Manager daemon smithi003.abfhzj is now available 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:06:14.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/mirror_snapshot_schedule"}]: dispatch 2024-09-11T08:06:14.910 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:14 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/trash_purge_schedule"}]: dispatch 2024-09-11T08:06:16.548 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-11T08:06:16.549 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-11T08:06:16.549 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-11T08:06:16.549 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-11T08:06:16.549 INFO:teuthology.orchestra.run.smithi003.stdout:mgr epoch 9 is available 2024-09-11T08:06:16.549 INFO:teuthology.orchestra.run.smithi003.stdout:Generating a dashboard self-signed certificate... 2024-09-11T08:06:16.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:16 smithi003 ceph-mon[25399]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-11T08:06:16.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:16 smithi003 ceph-mon[25399]: mgrmap e11: smithi003.abfhzj(active, since 1.00574s) 2024-09-11T08:06:16.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:16 smithi003 ceph-mon[25399]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-11T08:06:16.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:16 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:16.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:16 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:17.779 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-09-11T08:06:17.779 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial admin user... 2024-09-11T08:06:18.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: [11/Sep/2024:08:06:16] ENGINE Bus STARTING 2024-09-11T08:06:18.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: [11/Sep/2024:08:06:16] ENGINE Serving on https://172.21.15.3:7150 2024-09-11T08:06:18.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: [11/Sep/2024:08:06:16] ENGINE Bus STARTED 2024-09-11T08:06:18.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: [11/Sep/2024:08:06:16] ENGINE Error in HTTPServer.serve 2024-09-11T08:06:18.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Traceback (most recent call last): 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._connections.run(self.expiration_interval) 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._run(expiration_interval) 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s = self.context.wrap_socket( 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: return self.sslsocket_class._create( 2024-09-11T08:06:18.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self.do_handshake() 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._sslobj.do_handshake() 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:18.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:18 smithi003 ceph-mon[25399]: mgrmap e12: smithi003.abfhzj(active, since 2s) 2024-09-11T08:06:19.187 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:19 smithi003 ceph-mon[25399]: from='client.14172 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:19.187 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:19 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:19.902 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$ihXJX/1F5/CAqX8aMAkY6OSx5E6P7oAw3vFU4B5bjLL/ugY1m5SEa", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726041978, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-11T08:06:19.902 INFO:teuthology.orchestra.run.smithi003.stdout:Fetching dashboard port number... 2024-09-11T08:06:20.193 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:20 smithi003 ceph-mon[25399]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:21.150 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 8443 2024-09-11T08:06:21.160 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-11T08:06:21.161 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout disabled 2024-09-11T08:06:21.169 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-11T08:06:21.169 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-11T08:06:21.169 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld.service is not enabled 2024-09-11T08:06:21.169 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-11T08:06:21.171 INFO:teuthology.orchestra.run.smithi003.stdout:Ceph Dashboard is now available at: 2024-09-11T08:06:21.171 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:21.171 INFO:teuthology.orchestra.run.smithi003.stdout: URL: https://smithi003.front.sepia.ceph.com:8443/ 2024-09-11T08:06:21.171 INFO:teuthology.orchestra.run.smithi003.stdout: User: admin 2024-09-11T08:06:21.171 INFO:teuthology.orchestra.run.smithi003.stdout: Password: qsn387p4bw 2024-09-11T08:06:21.172 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:21.172 INFO:teuthology.orchestra.run.smithi003.stdout:Saving cluster configuration to /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config directory 2024-09-11T08:06:21.172 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling autotune for osd_memory_target 2024-09-11T08:06:21.294 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:21 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/145773438' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-09-11T08:06:22.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:22 smithi003 ceph-mon[25399]: mgrmap e13: smithi003.abfhzj(active, since 6s) 2024-09-11T08:06:23.596 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-11T08:06:23.596 INFO:teuthology.orchestra.run.smithi003.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-11T08:06:23.596 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.596 INFO:teuthology.orchestra.run.smithi003.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout:Or, if you are only running a single cluster on this host: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: ceph telemetry on 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout:For more information see: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: https://docs.ceph.com/docs/master/mgr/telemetry/ 2024-09-11T08:06:23.597 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:23.598 INFO:teuthology.orchestra.run.smithi003.stdout:Bootstrap complete. 2024-09-11T08:06:23.636 INFO:tasks.cephadm:Fetching config... 2024-09-11T08:06:23.637 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:06:23.637 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-11T08:06:23.654 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-11T08:06:23.655 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:06:23.655 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-11T08:06:23.711 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-11T08:06:23.711 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:06:23.712 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/keyring of=/dev/stdout 2024-09-11T08:06:23.778 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-11T08:06:23.778 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:06:23.778 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-11T08:06:23.835 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-11T08:06:23.836 DEBUG:teuthology.orchestra.run.smithi003:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwj6Yx3HnpMcq4klYVl2W2kf6AkAuIfMWcBEKJoTtU8oQJztAK798Ly25TmK0jVg+YNWA/0WJFZbxZjdAx7P3xBGwuKcGsHt4VAuO5FhEgYYpcJMKHmwsgcu3/6LdnBcc2vVVkKrIIsa2484PINYBEaCiiA0AOe9bdyoQCbXoiJUG2fhH/NP/EMs0i0ILzl5kzkAprB4QKVcPiukX5ARrE+bwbTrp6rWTxju/XPA3qY+43ImgP5FzNngfL1o0No1QaQJdarqNc4auAbIdu8RdXS9UaCgeh2oYaF/avPL9W0vYXzDoTYpqwBhH5xUzQzuj76UvOKM050vJkZD8WfkMBCNfuQUOipz+whj862EneNQgtoxGoYiyn407bK1ZZURXHxt2ENec0Sy1cfYEReutHGJkHdfjI5L4aEr9pRDm0lXAsPaUrTmLIUCGCd+DwqmSoXuIOKuCGa0jiXUDh0WS4MiGMiMMHS6wr/2tP+qeWe2fDi2MZSOJkFQwJ3lgLwBM= ceph-37f299f8-7014-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T08:06:23.911 INFO:teuthology.orchestra.run.smithi003.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwj6Yx3HnpMcq4klYVl2W2kf6AkAuIfMWcBEKJoTtU8oQJztAK798Ly25TmK0jVg+YNWA/0WJFZbxZjdAx7P3xBGwuKcGsHt4VAuO5FhEgYYpcJMKHmwsgcu3/6LdnBcc2vVVkKrIIsa2484PINYBEaCiiA0AOe9bdyoQCbXoiJUG2fhH/NP/EMs0i0ILzl5kzkAprB4QKVcPiukX5ARrE+bwbTrp6rWTxju/XPA3qY+43ImgP5FzNngfL1o0No1QaQJdarqNc4auAbIdu8RdXS9UaCgeh2oYaF/avPL9W0vYXzDoTYpqwBhH5xUzQzuj76UvOKM050vJkZD8WfkMBCNfuQUOipz+whj862EneNQgtoxGoYiyn407bK1ZZURXHxt2ENec0Sy1cfYEReutHGJkHdfjI5L4aEr9pRDm0lXAsPaUrTmLIUCGCd+DwqmSoXuIOKuCGa0jiXUDh0WS4MiGMiMMHS6wr/2tP+qeWe2fDi2MZSOJkFQwJ3lgLwBM= ceph-37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:06:23.923 DEBUG:teuthology.orchestra.run.smithi183:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwj6Yx3HnpMcq4klYVl2W2kf6AkAuIfMWcBEKJoTtU8oQJztAK798Ly25TmK0jVg+YNWA/0WJFZbxZjdAx7P3xBGwuKcGsHt4VAuO5FhEgYYpcJMKHmwsgcu3/6LdnBcc2vVVkKrIIsa2484PINYBEaCiiA0AOe9bdyoQCbXoiJUG2fhH/NP/EMs0i0ILzl5kzkAprB4QKVcPiukX5ARrE+bwbTrp6rWTxju/XPA3qY+43ImgP5FzNngfL1o0No1QaQJdarqNc4auAbIdu8RdXS9UaCgeh2oYaF/avPL9W0vYXzDoTYpqwBhH5xUzQzuj76UvOKM050vJkZD8WfkMBCNfuQUOipz+whj862EneNQgtoxGoYiyn407bK1ZZURXHxt2ENec0Sy1cfYEReutHGJkHdfjI5L4aEr9pRDm0lXAsPaUrTmLIUCGCd+DwqmSoXuIOKuCGa0jiXUDh0WS4MiGMiMMHS6wr/2tP+qeWe2fDi2MZSOJkFQwJ3lgLwBM= ceph-37f299f8-7014-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-11T08:06:24.044 INFO:teuthology.orchestra.run.smithi183.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwj6Yx3HnpMcq4klYVl2W2kf6AkAuIfMWcBEKJoTtU8oQJztAK798Ly25TmK0jVg+YNWA/0WJFZbxZjdAx7P3xBGwuKcGsHt4VAuO5FhEgYYpcJMKHmwsgcu3/6LdnBcc2vVVkKrIIsa2484PINYBEaCiiA0AOe9bdyoQCbXoiJUG2fhH/NP/EMs0i0ILzl5kzkAprB4QKVcPiukX5ARrE+bwbTrp6rWTxju/XPA3qY+43ImgP5FzNngfL1o0No1QaQJdarqNc4auAbIdu8RdXS9UaCgeh2oYaF/avPL9W0vYXzDoTYpqwBhH5xUzQzuj76UvOKM050vJkZD8WfkMBCNfuQUOipz+whj862EneNQgtoxGoYiyn407bK1ZZURXHxt2ENec0Sy1cfYEReutHGJkHdfjI5L4aEr9pRDm0lXAsPaUrTmLIUCGCd+DwqmSoXuIOKuCGa0jiXUDh0WS4MiGMiMMHS6wr/2tP+qeWe2fDi2MZSOJkFQwJ3lgLwBM= ceph-37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:06:24.057 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-11T08:06:24.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:24 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2395714457' entity='client.admin' 2024-09-11T08:06:24.310 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:06:27.274 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-11T08:06:27.275 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-11T08:06:27.580 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:06:27.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:27 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1776413266' entity='client.admin' 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:06:30.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:29 smithi003 ceph-mon[25399]: Deploying daemon crash.smithi003 on smithi003 2024-09-11T08:06:30.956 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi183 2024-09-11T08:06:30.956 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:06:30.956 DEBUG:teuthology.orchestra.run.smithi183:> dd of=/etc/ceph/ceph.conf 2024-09-11T08:06:30.976 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:06:30.976 DEBUG:teuthology.orchestra.run.smithi183:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:06:31.035 INFO:tasks.cephadm:Adding host smithi183 to orchestrator... 2024-09-11T08:06:31.035 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch host add smithi183 2024-09-11T08:06:31.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:31 smithi003 ceph-mon[25399]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:31.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:31 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:31.409 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:06:34.780 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:34.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:34.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:34.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:34.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:34.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:34 smithi003 ceph-mon[25399]: Deploying daemon node-exporter.smithi003 on smithi003 2024-09-11T08:06:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:35 smithi003 ceph-mon[25399]: Deploying cephadm binary to smithi183 2024-09-11T08:06:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:35 smithi003 ceph-mon[25399]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:35 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:36.893 INFO:teuthology.orchestra.run.smithi003.stdout:Added host 'smithi183' with addr '172.21.15.183' 2024-09-11T08:06:37.573 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-11T08:06:37.831 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: Deploying daemon alertmanager.smithi003 on smithi003 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:38.128 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:37 smithi003 ceph-mon[25399]: Added host smithi183 2024-09-11T08:06:40.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:39 smithi003 ceph-mon[25399]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:40.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:39 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:40.415 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:06:40.415 INFO:teuthology.orchestra.run.smithi003.stdout:[{"addr": "172.21.15.3", "hostname": "smithi003", "labels": [], "status": ""}, {"addr": "172.21.15.183", "hostname": "smithi183", "labels": [], "status": ""}] 2024-09-11T08:06:41.713 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-11T08:06:41.713 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd crush tunables default 2024-09-11T08:06:41.963 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:06:41.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:41 smithi003 ceph-mon[25399]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:06:41.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:41 smithi003 ceph-mon[25399]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:43.998 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:43 smithi003 ceph-mon[25399]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:46.162 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:45 smithi003 ceph-mon[25399]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:46.883 INFO:teuthology.orchestra.run.smithi003.stderr:adjusted tunables profile to default 2024-09-11T08:06:47.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:46 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2867024507' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-11T08:06:47.761 INFO:tasks.cephadm:Adding mon.smithi003 on smithi003 2024-09-11T08:06:47.761 INFO:tasks.cephadm:Adding mon.smithi183 on smithi183 2024-09-11T08:06:47.762 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch apply mon '2;smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183' 2024-09-11T08:06:48.019 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:48.063 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:48.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:48.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2867024507' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-11T08:06:48.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:47 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:49.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:48 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-11T08:06:49.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:48 smithi003 ceph-mon[25399]: Deploying daemon grafana.smithi003 on smithi003 2024-09-11T08:06:49.750 INFO:teuthology.orchestra.run.smithi183.stdout:Scheduled mon update... 2024-09-11T08:06:50.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:49 smithi003 ceph-mon[25399]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:50.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:49 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:50.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:49 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:50.311 DEBUG:teuthology.orchestra.run.smithi183:mon.smithi183> sudo journalctl -f -n 0 -u ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi183.service 2024-09-11T08:06:50.314 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:06:50.314 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:06:50.578 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:50.621 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:51.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:50 smithi003 ceph-mon[25399]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:06:51.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:50 smithi003 ceph-mon[25399]: Saving service mon spec with placement smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183;count:2 2024-09-11T08:06:52.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:51 smithi003 ceph-mon[25399]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:52.310 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:06:52.311 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:06:52.311 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:06:53.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:52 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2739142828' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:06:53.940 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:06:53.940 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:06:54.180 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:54.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:53 smithi003 ceph-mon[25399]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:54.223 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:55.883 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:06:55.883 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:06:55.883 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:06:56.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:55 smithi003 ceph-mon[25399]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:56.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:55 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/3753814983' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:06:57.477 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:06:57.478 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:06:57.719 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:57.761 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:06:58.146 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:57 smithi003 ceph-mon[25399]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:59.419 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:06:59.419 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:06:59.420 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: Deploying daemon prometheus.smithi003 on smithi003 2024-09-11T08:06:59.531 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:06:59.532 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:06:59 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/806837235' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:00.922 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:00.923 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:00.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:00 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:01.161 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:01.205 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:01.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:01 smithi003 ceph-mon[25399]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:02.777 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:02.777 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:02.777 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:03 smithi003 ceph-mon[25399]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:03 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2620883552' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:04.426 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:04.426 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:04.664 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:04.708 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:05 smithi003 ceph-mon[25399]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:06.361 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:06.361 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:06.361 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:06.815 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:06 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/3231666041' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:07.910 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:07 smithi003 ceph-mon[25399]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:07.946 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:07.946 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:08.186 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:08.229 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:09.944 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:09.949 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:09.949 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:09.965 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:09 smithi003 ceph-mon[25399]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:09.965 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:09 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:09.965 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:09 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:09.966 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:09 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:09.966 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:09 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-11T08:07:10.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:10 smithi003 ceph-mon[25399]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-11T08:07:10.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:10 smithi003 ceph-mon[25399]: mgrmap e14: smithi003.abfhzj(active, since 55s) 2024-09-11T08:07:10.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:10 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/396107962' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:11.509 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:11.510 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:11.750 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:11.798 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:13.506 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:13.507 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:13.507 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:13.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:13 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1243077451' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: Active manager daemon smithi003.abfhzj restarted 2024-09-11T08:07:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: Activating manager daemon smithi003.abfhzj 2024-09-11T08:07:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: osdmap e5: 0 total, 0 up, 0 in 2024-09-11T08:07:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: mgrmap e15: smithi003.abfhzj(active, starting, since 0.00363386s) 2024-09-11T08:07:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi003.abfhzj", "id": "smithi003.abfhzj"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: Manager daemon smithi003.abfhzj is now available 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/mirror_snapshot_schedule"}]: dispatch 2024-09-11T08:07:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/trash_purge_schedule"}]: dispatch 2024-09-11T08:07:14.995 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:14.995 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:15.244 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:15.289 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-11T08:07:16.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:16.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:16.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:15 smithi003 ceph-mon[25399]: mgrmap e16: smithi003.abfhzj(active, since 1.00598s) 2024-09-11T08:07:17.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:17.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: [11/Sep/2024:08:07:16] ENGINE Bus STARTING 2024-09-11T08:07:17.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: [11/Sep/2024:08:07:16] ENGINE Serving on https://172.21.15.3:7150 2024-09-11T08:07:17.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: [11/Sep/2024:08:07:16] ENGINE Bus STARTED 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: [11/Sep/2024:08:07:16] ENGINE Error in HTTPServer.serve 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: Traceback (most recent call last): 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._connections.run(self.expiration_interval) 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._run(expiration_interval) 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: s = self.context.wrap_socket( 2024-09-11T08:07:17.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: return self.sslsocket_class._create( 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self.do_handshake() 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: self._sslobj.do_handshake() 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T08:07:17.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:17.955 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:17.955 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:17.955 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:18.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:17 smithi003 ceph-mon[25399]: mgrmap e17: smithi003.abfhzj(active, since 2s) 2024-09-11T08:07:18.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:17 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1853971496' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:19.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi183", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:19.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:07:19.719 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:19.719 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:19.955 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: Updating smithi003:/etc/ceph/ceph.conf 2024-09-11T08:07:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: Updating smithi183:/etc/ceph/ceph.conf 2024-09-11T08:07:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-11T08:07:20.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:20 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:21.619 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:21.619 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:21.620 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:21 smithi003 ceph-mon[25399]: Updating smithi183:/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:21 smithi003 ceph-mon[25399]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T08:07:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:21 smithi003 ceph-mon[25399]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T08:07:21.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:21 smithi003 ceph-mon[25399]: Deploying daemon crash.smithi183 on smithi183 2024-09-11T08:07:22.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:22 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1689600385' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:24.022 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:24.023 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:24.279 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: Deploying daemon node-exporter.smithi183 on smithi183 2024-09-11T08:07:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:26.009 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:26.010 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:26.010 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:26.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:26 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/3876135074' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:27.800 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:27.801 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:28.507 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: Deploying daemon mgr.smithi183.nqrlko on smithi183 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:30.563 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:30.563 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:30.563 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:30 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1769935568' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:31.999 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:32.000 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:32.465 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:07:33.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:33.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:33 smithi003 ceph-mon[25399]: Deploying daemon mon.smithi183 on smithi183 2024-09-11T08:07:35.228 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:35.229 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:05:14.574048Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-11T08:07:35.229 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-09-11T08:07:35.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:35 smithi003 ceph-mon[25399]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:35.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:35.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:35 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/656346662' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:36.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:36 smithi183 systemd[1]: Starting Ceph mon.smithi183 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:07:37.012 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:36 smithi183 podman[32746]: 2024-09-11 08:07:36.948882636 +0000 UTC m=+0.111637100 container create b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T08:07:37.012 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:36 smithi183 podman[32746]: 2024-09-11 08:07:36.853471401 +0000 UTC m=+0.016225866 image pull 4a918172a49766385959227c53e75e2c302e923539324792cb5bee6cad0b2f2b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 podman[32746]: 2024-09-11 08:07:37.168518499 +0000 UTC m=+0.331272966 container init b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 podman[32746]: 2024-09-11 08:07:37.171656854 +0000 UTC m=+0.334411320 container start b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True) 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: set uid:gid to 167:167 (ceph:ceph) 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: ceph version 17.2.7-1623-gd0e6828a (d0e6828a2016d48cf25ad84064e50742bb1c39b9) quincy (stable), process ceph-mon, pid 2 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pidfile_write: ignore empty --pid-file 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: load: jerasure load: lrc 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: RocksDB version: 6.15.5 2024-09-11T08:07:37.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Compile date Sep 10 2024 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: DB SUMMARY 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: DB Session ID: 3GG71V1H552Q0U3TYFXZ 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: CURRENT file: CURRENT 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: IDENTITY file: IDENTITY 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: MANIFEST file: MANIFEST-000003 size: 57 Bytes 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi183/store.db dir, Total Num: 0, files: 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi183/store.db: 000004.log size: 511 ; 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.error_if_exists: 0 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.create_if_missing: 0 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.paranoid_checks: 1 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-11T08:07:37.483 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.env: 0x55fb72bd6440 2024-09-11T08:07:37.484 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.fs: Posix File System 2024-09-11T08:07:37.484 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.info_log: 0x55fb744230c0 2024-09-11T08:07:37.484 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_file_opening_threads: 16 2024-09-11T08:07:37.484 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.statistics: (nil) 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.use_fsync: 0 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_log_file_size: 0 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.keep_log_file_num: 1000 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.recycle_log_file_num: 0 2024-09-11T08:07:37.486 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_fallocate: 1 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_mmap_reads: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_mmap_writes: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.use_direct_reads: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.create_missing_column_families: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.db_log_dir: 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi183/store.db 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-11T08:07:37.487 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.advise_random_on_open: 1 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.db_write_buffer_size: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.write_buffer_manager: 0x55fb744e0870 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.rate_limiter: (nil) 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.wal_recovery_mode: 2 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.enable_thread_tracking: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.enable_pipelined_write: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.unordered_write: 0 2024-09-11T08:07:37.488 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.row_cache: None 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.wal_filter: None 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_ingest_behind: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.preserve_deletes: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.two_write_queues: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.manual_wal_flush: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.atomic_flush: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-11T08:07:37.489 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.log_readahead_size: 0 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.best_efforts_recovery: 0 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.allow_data_in_errors: 0 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.db_host_id: __hostname__ 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_background_jobs: 2 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_background_compactions: -1 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_subcompactions: 1 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-11T08:07:37.490 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_total_wal_size: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_open_files: -1 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bytes_per_sync: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_readahead_size: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_background_flushes: -1 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Compression algorithms supported: 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kZSTD supported: 0 2024-09-11T08:07:37.491 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kXpressCompression supported: 0 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kBZip2Compression supported: 0 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kLZ4Compression supported: 1 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kZlibCompression supported: 1 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kLZ4HCCompression supported: 1 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: kSnappyCompression supported: 1 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/version_set.cc:4724] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi183/store.db/MANIFEST-000003 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/column_family.cc:595] --------------- Options for column family [default]: 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-11T08:07:37.492 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.merge_operator: 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_filter: None 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_filter_factory: None 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.sst_partitioner_factory: None 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55fb743c9a38) 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: cache_index_and_filter_blocks: 1 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: pin_top_level_index_and_filter: 1 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: index_type: 0 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: data_block_index_type: 0 2024-09-11T08:07:37.493 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: index_shortening: 1 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: hash_index_allow_collision: 1 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: checksum: 1 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: no_block_cache: 0 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_cache: 0x55fb743ff1f0 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_cache_name: BinnedLRUCache 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_cache_options: 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: capacity : 536870912 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: num_shard_bits : 4 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: strict_capacity_limit : 0 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: high_pri_pool_ratio: 0.000 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_cache_compressed: (nil) 2024-09-11T08:07:37.494 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: persistent_cache: (nil) 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_size: 4096 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_size_deviation: 10 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_restart_interval: 16 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: index_block_restart_interval: 1 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: metadata_block_size: 4096 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: partition_filters: 0 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: use_delta_encoding: 1 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: filter_policy: rocksdb.BuiltinBloomFilter 2024-09-11T08:07:37.495 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: whole_key_filtering: 1 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: verify_compression: 0 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: read_amp_bytes_per_bit: 0 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: format_version: 4 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: enable_index_compression: 1 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: block_align: 0 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.write_buffer_size: 33554432 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_write_buffer_number: 2 2024-09-11T08:07:37.496 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression: NoCompression 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression: Disabled 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.prefix_extractor: nullptr 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.num_levels: 7 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-11T08:07:37.497 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.level: 32767 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.strategy: 0 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compression_opts.enabled: false 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-11T08:07:37.498 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.target_file_size_base: 67108864 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-11T08:07:37.499 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.arena_block_size: 4194304 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.disable_auto_compactions: 0 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-11T08:07:37.500 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.inplace_update_support: 0 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-11T08:07:37.501 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.bloom_locality: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.max_successive_merges: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.paranoid_file_checks: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.force_consistency_checks: 1 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.report_bg_io_stats: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.ttl: 2592000 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-11T08:07:37.502 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.enable_blob_files: false 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.min_blob_size: 0 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.blob_file_size: 268435456 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/version_set.cc:4764] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi183/store.db/MANIFEST-000003 succeeded,manifest_file_number is 3, next_file_number is 5, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/version_set.cc:4779] Column family [default] (ID 0), log number is 0 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/version_set.cc:4082] Creating manifest 7 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726042057195707, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/db_impl/db_impl_open.cc:845] Recovering log #4 mode 2 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [table/block_based/filter_policy.cc:991] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-09-11T08:07:37.503 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726042057196112, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1571, "file_checksum": "", "file_checksum_func_name": "Unknown", "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_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1726042057, "oldest_key_time": 0, "file_creation_time": 0, "db_id": "a2ed3883-73d7-4ed7-b2e7-690c726c4528", "db_session_id": "3GG71V1H552Q0U3TYFXZ"}} 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/version_set.cc:4082] Creating manifest 9 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726042057196538, "job": 1, "event": "recovery_finished"} 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [file/delete_scheduler.cc:69] Deleted file /var/lib/ceph/mon/ceph-smithi183/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/db_impl/db_impl_open.cc:1700] SstFileManager instance 0x55fb74432700 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: DB pointer 0x55fb74402000 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/db_impl/db_impl.cc:901] ------- DUMPING STATS ------- 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: rocksdb: [db/db_impl/db_impl.cc:903] 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** DB Stats ** 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-11T08:07:37.504 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** Compaction Stats [default] ** 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.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 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.505 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** Compaction Stats [default] ** 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.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 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-11T08:07:37.506 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Cumulative compaction: 0.00 GB write, 0.41 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Interval compaction: 0.00 GB write, 0.41 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** Compaction Stats [default] ** 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.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 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: L0 1/0 1.53 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.507 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Sum 1/0 1.53 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** Compaction Stats [default] ** 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.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 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9 0.00 0.00 1 0.000 0 0 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-11T08:07:37.508 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Cumulative compaction: 0.00 GB write, 0.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183 does not exist in monmap, will attempt to join an existing cluster 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: using public_addr v2:172.21.15.183:0/0 -> [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: starting mon.smithi183 rank -1 at public addrs [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] at bind addrs [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi183 fsid 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:07:37.509 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(???) e0 preinit fsid 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).mds e1 new map 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).mds e1 print_map 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: e1 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: legacy client fscid: -1 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: No filesystems configured 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-11T08:07:37.510 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-11T08:07:37.511 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.512 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon node-exporter.smithi003 on smithi003 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying cephadm binary to smithi183 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon alertmanager.smithi003 on smithi003 2024-09-11T08:07:37.513 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Added host smithi183 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2867024507' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2867024507' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: osdmap e4: 0 total, 0 up, 0 in 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon grafana.smithi003 on smithi003 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:07:37.515 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Saving service mon spec with placement smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183;count:2 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2739142828' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/3753814983' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.516 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon prometheus.smithi003 on smithi003 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/806837235' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2620883552' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/3231666041' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14160 172.21.15.3:0/2129933422' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mgrmap e14: smithi003.abfhzj(active, since 55s) 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/396107962' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1243077451' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Active manager daemon smithi003.abfhzj restarted 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Activating manager daemon smithi003.abfhzj 2024-09-11T08:07:37.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: osdmap e5: 0 total, 0 up, 0 in 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mgrmap e15: smithi003.abfhzj(active, starting, since 0.00363386s) 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi003.abfhzj", "id": "smithi003.abfhzj"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Manager daemon smithi003.abfhzj is now available 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.519 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/mirror_snapshot_schedule"}]: dispatch 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.abfhzj/trash_purge_schedule"}]: dispatch 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mgrmap e16: smithi003.abfhzj(active, since 1.00598s) 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: [11/Sep/2024:08:07:16] ENGINE Bus STARTING 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: [11/Sep/2024:08:07:16] ENGINE Serving on https://172.21.15.3:7150 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: [11/Sep/2024:08:07:16] ENGINE Bus STARTED 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: [11/Sep/2024:08:07:16] ENGINE Error in HTTPServer.serve 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: Traceback (most recent call last): 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-11T08:07:37.520 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: self._connections.run(self.expiration_interval) 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: self._run(expiration_interval) 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: s = self.context.wrap_socket( 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: return self.sslsocket_class._create( 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-11T08:07:37.521 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: self.do_handshake() 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: self._sslobj.do_handshake() 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mgrmap e17: smithi003.abfhzj(active, since 2s) 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1853971496' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.522 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.523 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd/host:smithi183", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi003:/etc/ceph/ceph.conf 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi183:/etc/ceph/ceph.conf 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:37.524 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi183:/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-11T08:07:37.525 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon crash.smithi183 on smithi183 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1689600385' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon node-exporter.smithi183 on smithi183 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/3876135074' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.526 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon mgr.smithi183.nqrlko on smithi183 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1769935568' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.527 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: Deploying daemon mon.smithi183 on smithi183 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/656346662' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 ceph-mon[32791]: mon.smithi183@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 bash[32746]: b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 2024-09-11T08:07:37.528 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:37 smithi183 systemd[1]: Started Ceph mon.smithi183 for 37f299f8-7014-11ef-bcea-c7b262605968. 2024-09-11T08:07:37.777 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-11T08:07:37.777 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-11T08:07:38.018 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi183/config 2024-09-11T08:07:42.636 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-09-11T08:07:42.637 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":2,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","modified":"2024-09-11T08:07:37.227034Z","created":"2024-09-11T08:05:14.574048Z","min_mon_release":17,"min_mon_release_name":"quincy","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"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi183","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:3300","nonce":0},{"type":"v1","addr":"172.21.15.183:6789","nonce":0}]},"addr":"172.21.15.183:6789/0","public_addr":"172.21.15.183:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-11T08:07:42.637 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 2 2024-09-11T08:07:42.637 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:07:42.637 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: mon.smithi003 calling monitor election 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: mon.smithi183 calling monitor election 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: mon.smithi003 is new leader, mons smithi003,smithi183 in quorum (ranks 0,1) 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: monmap e2: 2 mons at {smithi003=[v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0],smithi183=[v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T08:07:42.638 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: fsmap 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: osdmap e5: 0 total, 0 up, 0 in 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: mgrmap e17: smithi003.abfhzj(active, since 27s) 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: overall HEALTH_OK 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: Standby manager daemon smithi183.nqrlko started 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.639 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: mon.smithi003 calling monitor election 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: mon.smithi183 calling monitor election 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: mon.smithi003 is new leader, mons smithi003,smithi183 in quorum (ranks 0,1) 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: monmap e2: 2 mons at {smithi003=[v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0],smithi183=[v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0]} removed_ranks: {} disallowed_leaders: {} 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: fsmap 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: osdmap e5: 0 total, 0 up, 0 in 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: mgrmap e17: smithi003.abfhzj(active, since 27s) 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: overall HEALTH_OK 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: Standby manager daemon smithi183.nqrlko started 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:42.721 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:43.274 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-11T08:07:43.274 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph config generate-minimal-conf 2024-09-11T08:07:43.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:43.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: mgrmap e18: smithi003.abfhzj(active, since 28s), standbys: smithi183.nqrlko 2024-09-11T08:07:43.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi183.nqrlko", "id": "smithi183.nqrlko"}]: dispatch 2024-09-11T08:07:43.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:07:43.469 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2180154434' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:43.469 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:43.533 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: mgrmap e18: smithi003.abfhzj(active, since 28s), standbys: smithi183.nqrlko 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr metadata", "who": "smithi183.nqrlko", "id": "smithi183.nqrlko"}]: dispatch 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2180154434' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-09-11T08:07:43.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:07:44.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:44.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:44.572 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:44.572 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.328 INFO:teuthology.orchestra.run.smithi003.stdout:# minimal ceph.conf for 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:07:45.328 INFO:teuthology.orchestra.run.smithi003.stdout:[global] 2024-09-11T08:07:45.328 INFO:teuthology.orchestra.run.smithi003.stdout: fsid = 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:07:45.328 INFO:teuthology.orchestra.run.smithi003.stdout: mon_host = [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] 2024-09-11T08:07:45.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:45.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.906 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: Updating smithi003:/etc/ceph/ceph.conf 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: Updating smithi183:/etc/ceph/ceph.conf 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:07:45.907 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T08:07:45.908 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:45.908 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:45 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3965422445' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:45.934 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-11T08:07:45.934 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:07:45.934 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T08:07:45.964 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:07:45.964 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:45.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: Updating smithi003:/etc/ceph/ceph.conf 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: Updating smithi183:/etc/ceph/ceph.conf 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:07:45.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T08:07:45.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:45.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:45 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3965422445' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:46.030 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:07:46.030 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.conf 2024-09-11T08:07:46.062 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:07:46.062 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-11T08:07:46.132 INFO:tasks.cephadm:Deploying OSDs... 2024-09-11T08:07:46.132 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:07:46.132 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:07:46.149 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-11T08:07:46.149 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme4n1 2024-09-11T08:07:46.204 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme4n1 2024-09-11T08:07:46.204 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:06:27.822312944 +0000 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:39.318131730 +0000 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:39.318131730 +0000 2024-09-11T08:07:46.205 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:39.313131791 +0000 2024-09-11T08:07:46.205 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-11T08:07:46.289 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:07:46.289 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:07:46.289 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000245522 s, 2.1 MB/s 2024-09-11T08:07:46.290 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-11T08:07:46.306 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme3n1 2024-09-11T08:07:46.362 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme3n1 2024-09-11T08:07:46.362 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:46.362 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 1027 Links: 1 Device type: 103,6 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:06:27.810313093 +0000 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:39.173133504 +0000 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:39.173133504 +0000 2024-09-11T08:07:46.363 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:39.168133565 +0000 2024-09-11T08:07:46.363 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-11T08:07:46.428 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:07:46.428 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:07:46.428 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000220599 s, 2.3 MB/s 2024-09-11T08:07:46.429 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-11T08:07:46.487 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme2n1 2024-09-11T08:07:46.542 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme2n1 2024-09-11T08:07:46.542 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:46.542 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 1015 Links: 1 Device type: 103,4 2024-09-11T08:07:46.542 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:46.543 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:46.543 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:06:27.799313230 +0000 2024-09-11T08:07:46.543 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:39.027135290 +0000 2024-09-11T08:07:46.543 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:39.027135290 +0000 2024-09-11T08:07:46.543 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:39.023135339 +0000 2024-09-11T08:07:46.543 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-11T08:07:46.606 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:07:46.607 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:07:46.607 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.00024494 s, 2.1 MB/s 2024-09-11T08:07:46.608 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-11T08:07:46.666 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme1n1 2024-09-11T08:07:46.721 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme1n1 2024-09-11T08:07:46.721 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 1003 Links: 1 Device type: 103,2 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-11 08:06:27.789313355 +0000 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-11 08:02:38.884137039 +0000 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-11 08:02:38.884137039 +0000 2024-09-11T08:07:46.722 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: 2024-09-11 08:02:38.879137100 +0000 2024-09-11T08:07:46.722 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-11T08:07:46.786 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-11T08:07:46.786 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-11T08:07:46.786 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000282486 s, 1.8 MB/s 2024-09-11T08:07:46.787 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-11T08:07:46.845 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:07:46.846 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-09-11T08:07:46.865 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-11T08:07:46.865 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme4n1 2024-09-11T08:07:46.923 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme4n1 2024-09-11T08:07:46.923 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:46.923 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 1040 Links: 1 Device type: 103,8 2024-09-11T08:07:46.923 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:46.924 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:46.924 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:07:18.396171152 +0000 2024-09-11T08:07:46.924 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:40.923626480 +0000 2024-09-11T08:07:46.924 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:40.923626480 +0000 2024-09-11T08:07:46.924 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:40.918626613 +0000 2024-09-11T08:07:46.924 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-11T08:07:46.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:46 smithi003 ceph-mon[25399]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:46.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:46 smithi003 ceph-mon[25399]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:46.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:46 smithi003 ceph-mon[25399]: Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-11T08:07:46.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:46 smithi003 ceph-mon[25399]: Reconfiguring daemon mon.smithi003 on smithi003 2024-09-11T08:07:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:46 smithi183 ceph-mon[32791]: Updating smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:46 smithi183 ceph-mon[32791]: Updating smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-11T08:07:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:46 smithi183 ceph-mon[32791]: Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-11T08:07:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:46 smithi183 ceph-mon[32791]: Reconfiguring daemon mon.smithi003 on smithi003 2024-09-11T08:07:46.992 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:07:46.992 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:07:46.992 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000261952 s, 2.0 MB/s 2024-09-11T08:07:46.993 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-11T08:07:47.052 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme3n1 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme3n1 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 1028 Links: 1 Device type: 103,6 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:47.110 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:07:18.385171447 +0000 2024-09-11T08:07:47.111 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:40.777630376 +0000 2024-09-11T08:07:47.111 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:40.777630376 +0000 2024-09-11T08:07:47.111 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:40.772630509 +0000 2024-09-11T08:07:47.111 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-11T08:07:47.176 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:07:47.176 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:07:47.176 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000254047 s, 2.0 MB/s 2024-09-11T08:07:47.177 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-11T08:07:47.235 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme2n1 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme2n1 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:07:18.374171743 +0000 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:40.639634058 +0000 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:40.639634058 +0000 2024-09-11T08:07:47.292 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:40.634634192 +0000 2024-09-11T08:07:47.293 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-11T08:07:47.357 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:07:47.357 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:07:47.357 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000222728 s, 2.3 MB/s 2024-09-11T08:07:47.358 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-11T08:07:47.415 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme1n1 2024-09-11T08:07:47.471 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme1n1 2024-09-11T08:07:47.471 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-11T08:07:47.471 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-09-11 08:07:18.363172039 +0000 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-09-11 08:02:40.499637794 +0000 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-09-11 08:02:40.499637794 +0000 2024-09-11T08:07:47.472 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: 2024-09-11 08:02:40.495637901 +0000 2024-09-11T08:07:47.472 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-11T08:07:47.535 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-09-11T08:07:47.535 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-09-11T08:07:47.535 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000237059 s, 2.2 MB/s 2024-09-11T08:07:47.536 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-11T08:07:47.592 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi003.abfhzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:07:47.833 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:47.866 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi183/config 2024-09-11T08:07:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:47.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:47.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:47.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi003.abfhzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:07:47.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:07:47.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: Reconfiguring mgr.smithi003.abfhzj (unknown last config time)... 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: Reconfiguring daemon mgr.smithi003.abfhzj on smithi003 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:07:48.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: Reconfiguring mgr.smithi003.abfhzj (unknown last config time)... 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: Reconfiguring daemon mgr.smithi003.abfhzj on smithi003 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:07:48.951 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:07:49.435 INFO:teuthology.orchestra.run.smithi183.stdout:Scheduled osd.all-available-devices update... 2024-09-11T08:07:49.712 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:49 smithi003 ceph-mon[25399]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:49.712 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:49 smithi003 ceph-mon[25399]: Reconfiguring crash.smithi003 (monmap changed)... 2024-09-11T08:07:49.712 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:49 smithi003 ceph-mon[25399]: Reconfiguring daemon crash.smithi003 on smithi003 2024-09-11T08:07:49.712 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:49 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:49.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:49 smithi183 ceph-mon[32791]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:49.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:49 smithi183 ceph-mon[32791]: Reconfiguring crash.smithi003 (monmap changed)... 2024-09-11T08:07:49.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:49 smithi183 ceph-mon[32791]: Reconfiguring daemon crash.smithi003 on smithi003 2024-09-11T08:07:49.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:49 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:50.005 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-11T08:07:50.005 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:07:50.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:07:50.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: Marking host: smithi003 for OSDSpec preview refresh. 2024-09-11T08:07:50.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: Marking host: smithi183 for OSDSpec preview refresh. 2024-09-11T08:07:50.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: Saving service osd.all-available-devices spec with placement * 2024-09-11T08:07:50.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:50.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:50 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:50.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:07:50.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: Marking host: smithi003 for OSDSpec preview refresh. 2024-09-11T08:07:50.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: Marking host: smithi183 for OSDSpec preview refresh. 2024-09-11T08:07:50.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: Saving service osd.all-available-devices spec with placement * 2024-09-11T08:07:50.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:50.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:50 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:51.730 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:51 smithi003 ceph-mon[25399]: Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-11T08:07:51.731 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:51 smithi003 ceph-mon[25399]: Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-11T08:07:51.731 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:51 smithi003 ceph-mon[25399]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:51.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:51 smithi183 ceph-mon[32791]: Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-11T08:07:51.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:51 smithi183 ceph-mon[32791]: Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-11T08:07:51.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:51 smithi183 ceph-mon[32791]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:52.113 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:07:53.713 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:53 smithi003 ceph-mon[25399]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:53.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:53 smithi183 ceph-mon[32791]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:54.390 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:07:54.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:54 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1748732307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:07:54.938 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:54 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1748732307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:07:55.440 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:07:55.905 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:55 smithi003 ceph-mon[25399]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:55 smithi183 ceph-mon[32791]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:56.442 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:07:56.708 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:07:57.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:57 smithi003 ceph-mon[25399]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:57.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:57 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:57.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:57 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:57.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:57 smithi003 ceph-mon[25399]: Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-11T08:07:57.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:57 smithi003 ceph-mon[25399]: Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-11T08:07:57.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:57 smithi183 ceph-mon[32791]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:57.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:57 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:57.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:57 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:07:57.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:57 smithi183 ceph-mon[32791]: Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-11T08:07:57.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:57 smithi183 ceph-mon[32791]: Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-11T08:07:59.681 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:07:59.682 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:59 smithi003 ceph-mon[25399]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:59.682 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:07:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:07:59.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:59 smithi183 ceph-mon[32791]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:07:59.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:07:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:00.484 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:08:00.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:00 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1976734355' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:00.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:00 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1976734355' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:01.484 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:01.799 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:01.920 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:01 smithi003 ceph-mon[25399]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:01 smithi183 ceph-mon[32791]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:03.589 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:03.828 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:03 smithi003 ceph-mon[25399]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:03.829 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:03 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1475329386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:03 smithi183 ceph-mon[32791]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:03.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:03 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1475329386' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:04.409 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:08:05.411 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:05 smithi003 ceph-mon[25399]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:05 smithi003 ceph-mon[25399]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:08:05.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:05 smithi003 ceph-mon[25399]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:08:05.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:05 smithi183 ceph-mon[32791]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:05.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:05.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:05.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:05 smithi183 ceph-mon[32791]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:08:05.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:05 smithi183 ceph-mon[32791]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:08:07.136 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:07.911 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:07 smithi003 ceph-mon[25399]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:07.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:07 smithi183 ceph-mon[32791]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:09.433 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:09.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:09 smithi003 ceph-mon[25399]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:09.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:09 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/324356687' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:09.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:09 smithi183 ceph-mon[32791]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:09.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:09 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/324356687' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:10.500 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:08:11.502 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:11.763 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:11.890 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:11 smithi003 ceph-mon[25399]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:11.890 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:11.890 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:11.890 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:08:11.890 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:11.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:11 smithi183 ceph-mon[32791]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:11.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:11.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:11.947 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-09-11T08:08:11.947 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:12.934 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:12 smithi003 ceph-mon[25399]: Reconfiguring crash.smithi183 (monmap changed)... 2024-09-11T08:08:12.934 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:12 smithi003 ceph-mon[25399]: Reconfiguring daemon crash.smithi183 on smithi183 2024-09-11T08:08:12.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:12 smithi183 ceph-mon[32791]: Reconfiguring crash.smithi183 (monmap changed)... 2024-09-11T08:08:12.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:12 smithi183 ceph-mon[32791]: Reconfiguring daemon crash.smithi183 on smithi183 2024-09-11T08:08:13.420 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:13.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:13.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:13.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:13.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:08:13.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:08:13.950 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:13.950 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:13 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2189451014' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:13.957 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:13.957 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:13.958 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:13.958 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.nqrlko", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-09-11T08:08:13.958 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mgr services"}]: dispatch 2024-09-11T08:08:13.958 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:13.958 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:13 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2189451014' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:13.983 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:08:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: Reconfiguring mgr.smithi183.nqrlko (monmap changed)... 2024-09-11T08:08:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: Reconfiguring daemon mgr.smithi183.nqrlko on smithi183 2024-09-11T08:08:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:08:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T08:08:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:14.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:14.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: Reconfiguring mgr.smithi183.nqrlko (monmap changed)... 2024-09-11T08:08:14.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: Reconfiguring daemon mgr.smithi183.nqrlko on smithi183 2024-09-11T08:08:14.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:14.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:14.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-09-11T08:08:14.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-09-11T08:08:14.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:14.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:14.984 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:15.257 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:15.966 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: Reconfiguring mon.smithi183 (monmap changed)... 2024-09-11T08:08:15.967 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: Reconfiguring daemon mon.smithi183 on smithi183 2024-09-11T08:08:15.967 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:15.968 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.968 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.968 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-11T08:08:15.969 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-11T08:08:15.969 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.969 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-11T08:08:15.969 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-11T08:08:15.969 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.970 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:08:15.970 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-11T08:08:15.970 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.971 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:08:15.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: Reconfiguring mon.smithi183 (monmap changed)... 2024-09-11T08:08:15.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: Reconfiguring daemon mon.smithi183 on smithi183 2024-09-11T08:08:15.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:15.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-11T08:08:15.973 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-11T08:08:15.973 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:15.974 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:08:16.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:16 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-11T08:08:16.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-11T08:08:16.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-11T08:08:16.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-11T08:08:16.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-11T08:08:16.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:08:16.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:16 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-11T08:08:17.217 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:17.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:17.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3581644911' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:17.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:17 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:17.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3581644911' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:17.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:17.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:17 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:18.384 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-11T08:08:19.385 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:19.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:19 smithi003 ceph-mon[25399]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:19.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:19 smithi183 ceph-mon[32791]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:20.609 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:21 smithi003 ceph-mon[25399]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:21.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:21 smithi183 ceph-mon[32791]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:21.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:21.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:08:22.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:08:22.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:23.913 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:23 smithi003 ceph-mon[25399]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:24.094 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:24.153 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:23 smithi183 ceph-mon[32791]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1644668892' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]: dispatch 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]: dispatch 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]': finished 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: osdmap e6: 1 total, 0 up, 1 in 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:24.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:24 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3238553593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:24.986 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1726042104,"num_remapped_pgs":0} 2024-09-11T08:08:25.051 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1644668892' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]: dispatch 2024-09-11T08:08:25.051 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]: dispatch 2024-09-11T08:08:25.051 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3f5206a2-6cf0-4c47-8ce0-0ef89c443f48"}]': finished 2024-09-11T08:08:25.051 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: osdmap e6: 1 total, 0 up, 1 in 2024-09-11T08:08:25.051 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:25.052 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:24 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3238553593' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/4211582672' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/662275769' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dc427b98-9ede-4b6f-bb46-edf1310975f5"}]: dispatch 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/662275769' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dc427b98-9ede-4b6f-bb46-edf1310975f5"}]': finished 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: osdmap e7: 2 total, 0 up, 2 in 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:25.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:25.987 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/4211582672' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/662275769' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dc427b98-9ede-4b6f-bb46-edf1310975f5"}]: dispatch 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/662275769' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dc427b98-9ede-4b6f-bb46-edf1310975f5"}]': finished 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: osdmap e7: 2 total, 0 up, 2 in 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:26.012 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:26.242 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:26.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:26 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2411106410' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:27.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:26 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2411106410' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:27.798 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:27 smithi003 ceph-mon[25399]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:28.032 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:27 smithi183 ceph-mon[32791]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:28.051 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:28.640 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":8,"num_osds":3,"num_up_osds":0,"osd_up_since":0,"num_in_osds":3,"osd_in_since":1726042107,"num_remapped_pgs":0} 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/794179333' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]: dispatch 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]: dispatch 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]': finished 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: osdmap e8: 3 total, 0 up, 3 in 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:29.059 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:29.060 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:29.060 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:28 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2266411047' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:29.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/794179333' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]: dispatch 2024-09-11T08:08:29.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]: dispatch 2024-09-11T08:08:29.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e56b3c1b-922f-4946-bc7b-cb6cba07be69"}]': finished 2024-09-11T08:08:29.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: osdmap e8: 3 total, 0 up, 3 in 2024-09-11T08:08:29.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:29.153 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:29.153 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:29.153 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:28 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2266411047' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:29.641 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:29.900 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/301966287' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3540772016' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9cca24d8-0377-4c1f-97a8-b1953e9d4656"}]: dispatch 2024-09-11T08:08:29.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3540772016' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9cca24d8-0377-4c1f-97a8-b1953e9d4656"}]': finished 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: osdmap e9: 4 total, 0 up, 4 in 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:29.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/301966287' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3540772016' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9cca24d8-0377-4c1f-97a8-b1953e9d4656"}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3540772016' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9cca24d8-0377-4c1f-97a8-b1953e9d4656"}]': finished 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: osdmap e9: 4 total, 0 up, 4 in 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:30.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:30.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:30 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3492172952' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:31.196 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:30 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3492172952' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:31.634 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:31.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:31.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2203011742' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]: dispatch 2024-09-11T08:08:31.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]: dispatch 2024-09-11T08:08:31.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]': finished 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: osdmap e10: 5 total, 0 up, 5 in 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:31.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:31 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/287338885' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2203011742' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b755ee6a-c57e-4463-a3ef-c491f180d6c9"}]': finished 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: osdmap e10: 5 total, 0 up, 5 in 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:31 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/287338885' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:32.242 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1726042111,"num_remapped_pgs":0} 2024-09-11T08:08:33.243 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:33.499 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/111116458' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2839693761' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "bfc563ed-f0e7-4b0b-a518-0b064dab89d3"}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2839693761' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bfc563ed-f0e7-4b0b-a518-0b064dab89d3"}]': finished 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: osdmap e11: 6 total, 0 up, 6 in 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:33.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:34.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/111116458' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2839693761' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "bfc563ed-f0e7-4b0b-a518-0b064dab89d3"}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2839693761' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bfc563ed-f0e7-4b0b-a518-0b064dab89d3"}]': finished 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: osdmap e11: 6 total, 0 up, 6 in 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:34.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:34.904 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:34 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/348738183' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:35.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:34 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/348738183' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:35.278 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:35.910 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1726042115,"num_remapped_pgs":0} 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2970170309' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]: dispatch 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]: dispatch 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]': finished 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: osdmap e12: 7 total, 0 up, 7 in 2024-09-11T08:08:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:35.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:35 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3823398339' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2970170309' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]: dispatch 2024-09-11T08:08:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]: dispatch 2024-09-11T08:08:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "57475f88-5612-4687-a984-08c3c0e48cf8"}]': finished 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: osdmap e12: 7 total, 0 up, 7 in 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:35.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:35 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3823398339' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:36.910 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/2050143974' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3896100082' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5135a4a-c146-4bba-a51b-77c5eaad407b"}]: dispatch 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3896100082' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5135a4a-c146-4bba-a51b-77c5eaad407b"}]': finished 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: osdmap e13: 8 total, 0 up, 8 in 2024-09-11T08:08:36.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:36.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:36 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:37.173 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:37.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/2050143974' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3896100082' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "a5135a4a-c146-4bba-a51b-77c5eaad407b"}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3896100082' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a5135a4a-c146-4bba-a51b-77c5eaad407b"}]': finished 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: osdmap e13: 8 total, 0 up, 8 in 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:37.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:37.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:37.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:36 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:38.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:38 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/199830995' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:38.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:38 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/199830995' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-09-11T08:08:39.190 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:39.191 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:39 smithi003 ceph-mon[25399]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:39.213 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:39 smithi183 ceph-mon[32791]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:39.856 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:08:40.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:40 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2179082302' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:40.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:40 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2179082302' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:40.857 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:41.120 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:41 smithi183 ceph-mon[32791]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:41.122 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:41.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:41 smithi003 ceph-mon[25399]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:42.013 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T08:08:42.013 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:42 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:42.110 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-09-11T08:08:42.110 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:42 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:43.124 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:43 smithi183 ceph-mon[32791]: Deploying daemon osd.0 on smithi183 2024-09-11T08:08:43.124 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:43 smithi183 ceph-mon[32791]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:43.224 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:43 smithi003 ceph-mon[25399]: Deploying daemon osd.0 on smithi183 2024-09-11T08:08:43.225 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:43 smithi003 ceph-mon[25399]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:44.450 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T08:08:44.451 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:44.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-09-11T08:08:44.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:44.932 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:45.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:45 smithi003 ceph-mon[25399]: Deploying daemon osd.1 on smithi003 2024-09-11T08:08:45.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:45 smithi003 ceph-mon[25399]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:45.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:45 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:45.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:45 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2020670040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:45.600 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:45 smithi183 ceph-mon[32791]: Deploying daemon osd.1 on smithi003 2024-09-11T08:08:45.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:45 smithi183 ceph-mon[32791]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:45.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:45 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:08:45.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:45 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2020670040' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:45.658 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:08:46.660 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:47.098 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T08:08:47.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:47.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:47 smithi003 ceph-mon[25399]: Deploying daemon osd.2 on smithi183 2024-09-11T08:08:47.974 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:47.974 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:47.974 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:47.974 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-09-11T08:08:47.975 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:47.975 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:47 smithi183 ceph-mon[32791]: Deploying daemon osd.2 on smithi183 2024-09-11T08:08:49.569 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:49.865 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:49 smithi183 ceph-mon[32791]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:49.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:49 smithi003 ceph-mon[25399]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:50.258 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:08:50.818 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:50 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/320367650' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:50.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:50 smithi003 ceph-mon[25399]: from='osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T08:08:50.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:50 smithi003 ceph-mon[25399]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T08:08:50.876 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:50 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/320367650' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:50.877 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:50 smithi183 ceph-mon[32791]: from='osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T08:08:50.877 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:50 smithi183 ceph-mon[32791]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-09-11T08:08:51.259 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:51.541 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:51.704 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:51.704 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: osdmap e14: 8 total, 0 up, 8 in 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:51.705 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:51.706 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:51.706 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-11T08:08:51.706 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:51.895 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:51.895 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-11T08:08:51.895 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: osdmap e14: 8 total, 0 up, 8 in 2024-09-11T08:08:51.895 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:51.895 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:51.896 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:51.897 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:51.897 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:51.897 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:51.897 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-09-11T08:08:51.897 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:52.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: Deploying daemon osd.4 on smithi183 2024-09-11T08:08:52.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: osdmap e15: 8 total, 0 up, 8 in 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:52.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:52.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T08:08:52.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:52 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:52.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: Deploying daemon osd.4 on smithi183 2024-09-11T08:08:52.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: osdmap e15: 8 total, 0 up, 8 in 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:52.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:52.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:52.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-09-11T08:08:52.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:52 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:53.622 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:53.842 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:08:53.842 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:08:53.842 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: Deploying daemon osd.3 on smithi003 2024-09-11T08:08:53.842 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555] boot 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: osdmap e16: 8 total, 1 up, 8 in 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:53.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: Deploying daemon osd.3 on smithi003 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: osd.0 [v2:172.21.15.183:6800/2010916555,v1:172.21.15.183:6801/2010916555] boot 2024-09-11T08:08:53.946 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: osdmap e16: 8 total, 1 up, 8 in 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:53.947 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:54.724 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":17,"num_osds":8,"num_up_osds":1,"osd_up_since":1726042132,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: osdmap e17: 8 total, 1 up, 8 in 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:54.752 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:54.753 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:54.753 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1933494061' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:54.753 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:54 smithi183 ceph-mon[32791]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: osdmap e17: 8 total, 1 up, 8 in 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1933494061' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:54.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:54 smithi003 ceph-mon[25399]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-09-11T08:08:55.726 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:08:55.742 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: pgmap v55: 0 pgs: ; 0 B data, 291 MiB used, 89 GiB / 89 GiB avail 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: osdmap e18: 8 total, 1 up, 8 in 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:55.743 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:55 smithi003 ceph-mon[25399]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-11T08:08:55.833 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: pgmap v55: 0 pgs: ; 0 B data, 291 MiB used, 89 GiB / 89 GiB avail 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: osdmap e18: 8 total, 1 up, 8 in 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:55.834 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:55 smithi183 ceph-mon[32791]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-09-11T08:08:56.343 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: osdmap e19: 8 total, 1 up, 8 in 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:08:56.890 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:56.891 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275] boot 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: osdmap e20: 8 total, 2 up, 8 in 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.892 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:56.893 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:56.893 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:56.893 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:56.893 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:56 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275]' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: osdmap e19: 8 total, 1 up, 8 in 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:56.897 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:08:56.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: osd.2 [v2:172.21.15.183:6808/2815318275,v1:172.21.15.183:6809/2815318275] boot 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: osdmap e20: 8 total, 2 up, 8 in 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:56.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:56.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:56.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:56 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:57.684 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:08:57.684 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:08:57.685 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: pgmap v58: 0 pgs: ; 0 B data, 291 MiB used, 89 GiB / 89 GiB avail 2024-09-11T08:08:57.685 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: Deploying daemon osd.6 on smithi183 2024-09-11T08:08:57.685 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:57.685 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:57 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: pgmap v58: 0 pgs: ; 0 B data, 291 MiB used, 89 GiB / 89 GiB avail 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: Deploying daemon osd.6 on smithi183 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:57.804 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:57 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:58.203 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374] boot 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: osdmap e21: 8 total, 3 up, 8 in 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:58.799 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:58.800 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:58.800 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:58 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3878058429' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: osd.1 [v2:172.21.15.3:6802/1254852374,v1:172.21.15.3:6803/1254852374] boot 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: osdmap e21: 8 total, 3 up, 8 in 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:08:58.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:58 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3878058429' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:08:59.112 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1726042137,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: pgmap v61: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: osdmap e22: 8 total, 3 up, 8 in 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:00.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:00.061 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-11T08:09:00.061 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:00.061 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T08:09:00.061 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:08:59 smithi003 ceph-mon[25399]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T08:09:00.090 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: pgmap v61: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-09-11T08:09:00.090 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-09-11T08:09:00.090 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: osdmap e22: 8 total, 3 up, 8 in 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:00.091 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:00.092 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-09-11T08:09:00.093 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:00.093 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T08:09:00.093 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:08:59 smithi183 ceph-mon[32791]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-09-11T08:09:00.113 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:00.386 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: osdmap e23: 8 total, 3 up, 8 in 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:00.945 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: pgmap v64: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:00.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:00 smithi183 ceph-mon[32791]: Deploying daemon osd.5 on smithi003 2024-09-11T08:09:01.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-11T08:09:01.294 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: osdmap e23: 8 total, 3 up, 8 in 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: pgmap v64: 1 pgs: 1 unknown; 0 B data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:01.295 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-09-11T08:09:01.296 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:01.296 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:00 smithi003 ceph-mon[25399]: Deploying daemon osd.5 on smithi003 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: osdmap e24: 8 total, 3 up, 8 in 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:01.954 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:09:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: osdmap e24: 8 total, 3 up, 8 in 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:02.145 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:02.755 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":25,"num_osds":8,"num_up_osds":4,"osd_up_since":1726042141,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855] boot 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: osdmap e25: 8 total, 4 up, 8 in 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:02.870 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:02.871 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:02.871 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:02.871 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/4251568797' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:02.871 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: pgmap v67: 1 pgs: 1 peering; 320 KiB data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T08:09:02.871 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:03.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:09:03.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:09:03.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:03.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: osd.4 [v2:172.21.15.183:6816/2773854855,v1:172.21.15.183:6817/2773854855] boot 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: osdmap e25: 8 total, 4 up, 8 in 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/4251568797' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: pgmap v67: 1 pgs: 1 peering; 320 KiB data, 872 MiB used, 267 GiB / 268 GiB avail 2024-09-11T08:09:03.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:03.756 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: osdmap e26: 8 total, 4 up, 8 in 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: mgrmap e19: smithi003.abfhzj(active, since 108s), standbys: smithi183.nqrlko 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:04.076 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:04.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:04.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:03 smithi003 ceph-mon[25399]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T08:09:04.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: osdmap e26: 8 total, 4 up, 8 in 2024-09-11T08:09:04.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: mgrmap e19: smithi003.abfhzj(active, since 108s), standbys: smithi183.nqrlko 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:04.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:03 smithi183 ceph-mon[32791]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-09-11T08:09:04.331 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53273]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T08:09:04.331 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53273]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T08:09:04.331 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53273]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T08:09:04.331 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53273]: pam_unix(sudo:session): session closed for user root 2024-09-11T08:09:04.764 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:05.033 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53286]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T08:09:05.033 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53286]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T08:09:05.033 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53286]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T08:09:05.033 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:04 smithi003 sudo[53286]: pam_unix(sudo:session): session closed for user root 2024-09-11T08:09:05.306 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43636]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-11T08:09:05.306 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43636]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T08:09:05.306 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43636]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T08:09:05.307 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43636]: pam_unix(sudo:session): session closed for user root 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43639]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43639]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43639]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 sudo[43639]: pam_unix(sudo:session): session closed for user root 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T08:09:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: pgmap v69: 1 pgs: 1 peering; 320 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: osdmap e27: 8 total, 4 up, 8 in 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:05.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:09:05.603 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:05 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:09:05.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T08:09:05.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: pgmap v69: 1 pgs: 1 peering; 320 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: osdmap e27: 8 total, 4 up, 8 in 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:05.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:05.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi003"}]: dispatch 2024-09-11T08:09:05.720 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:05 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-09-11T08:09:06.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T08:09:06.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T08:09:06.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:06.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: osdmap e28: 8 total, 4 up, 8 in 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:06.344 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:06 smithi003 ceph-mon[25399]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:06.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-11T08:09:06.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: osdmap e28: 8 total, 4 up, 8 in 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:06.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:06 smithi183 ceph-mon[32791]: from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-09-11T08:09:06.724 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:07.364 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":28,"num_osds":8,"num_up_osds":4,"osd_up_since":1726042141,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:07.696 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:09:07.696 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: pgmap v72: 1 pgs: 1 peering; 320 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1400238007' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460] boot 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: osdmap e29: 8 total, 5 up, 8 in 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:07.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:07.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: pgmap v72: 1 pgs: 1 peering; 320 KiB data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1400238007' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: osd.3 [v2:172.21.15.3:6810/3860307460,v1:172.21.15.3:6811/3860307460] boot 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: osdmap e29: 8 total, 5 up, 8 in 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:07.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:08.365 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332] boot 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: osdmap e30: 8 total, 6 up, 8 in 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:08.494 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:08 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:08.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: osd.6 [v2:172.21.15.183:6824/3405344332,v1:172.21.15.183:6825/3405344332] boot 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: osdmap e30: 8 total, 6 up, 8 in 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-09-11T08:09:08.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:08 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:09.013 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:09.447 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: pgmap v75: 1 pgs: 1 peering; 320 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: osdmap e31: 8 total, 6 up, 8 in 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-11T08:09:09.448 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: pgmap v75: 1 pgs: 1 peering; 320 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: osdmap e31: 8 total, 6 up, 8 in 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-09-11T08:09:09.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:10.640 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:10 smithi003 ceph-mon[25399]: Deploying daemon osd.7 on smithi003 2024-09-11T08:09:10.640 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:10 smithi003 ceph-mon[25399]: osdmap e32: 8 total, 6 up, 8 in 2024-09-11T08:09:10.640 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:10 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:10.640 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:10 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:10.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:10 smithi183 ceph-mon[32791]: Deploying daemon osd.7 on smithi003 2024-09-11T08:09:10.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:10 smithi183 ceph-mon[32791]: osdmap e32: 8 total, 6 up, 8 in 2024-09-11T08:09:10.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:10 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:10.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:10 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:11.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:11 smithi003 ceph-mon[25399]: pgmap v78: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 16 KiB/s rd, 848 KiB/s wr, 54 op/s; 144 KiB/s, 0 objects/s recovering 2024-09-11T08:09:11.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:11 smithi003 ceph-mon[25399]: osdmap e33: 8 total, 6 up, 8 in 2024-09-11T08:09:11.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:11.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:11.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:11 smithi183 ceph-mon[32791]: pgmap v78: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 16 KiB/s rd, 848 KiB/s wr, 54 op/s; 144 KiB/s, 0 objects/s recovering 2024-09-11T08:09:11.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:11 smithi183 ceph-mon[32791]: osdmap e33: 8 total, 6 up, 8 in 2024-09-11T08:09:11.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:11.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:11.984 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:12.661 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:12 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/869526338' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:12.661 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:12 smithi003 ceph-mon[25399]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T08:09:12.685 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":33,"num_osds":8,"num_up_osds":6,"osd_up_since":1726042147,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:12.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:12 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/869526338' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:12.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:12 smithi183 ceph-mon[32791]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: pgmap v80: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 13 KiB/s rd, 695 KiB/s wr, 44 op/s; 118 KiB/s, 0 objects/s recovering 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: osdmap e34: 8 total, 6 up, 8 in 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:13.632 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:13 smithi003 ceph-mon[25399]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:13.687 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:13.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: pgmap v80: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail; 13 KiB/s rd, 695 KiB/s wr, 44 op/s; 118 KiB/s, 0 objects/s recovering 2024-09-11T08:09:13.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-11T08:09:13.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: osdmap e34: 8 total, 6 up, 8 in 2024-09-11T08:09:13.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:13.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:13.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:13 smithi183 ceph-mon[32791]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:13.960 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: osdmap e35: 8 total, 6 up, 8 in 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:14.626 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:14.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: from='osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:14.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: osdmap e35: 8 total, 6 up, 8 in 2024-09-11T08:09:14.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:14.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:14.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:14.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:15.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:09:15.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:09:15.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T08:09:15.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:15.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987] boot 2024-09-11T08:09:15.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: osdmap e36: 8 total, 7 up, 8 in 2024-09-11T08:09:15.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:15.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: osd.5 [v2:172.21.15.3:6818/1379819987,v1:172.21.15.3:6819/1379819987] boot 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: osdmap e36: 8 total, 7 up, 8 in 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-09-11T08:09:15.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:15.787 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:16.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:16 smithi003 ceph-mon[25399]: osdmap e37: 8 total, 7 up, 8 in 2024-09-11T08:09:16.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:16.624 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:16 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1442165561' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:16.651 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1726042154,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:16.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:16 smithi183 ceph-mon[32791]: osdmap e37: 8 total, 7 up, 8 in 2024-09-11T08:09:16.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:16.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:16 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1442165561' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:17.652 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:17.711 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:17 smithi003 ceph-mon[25399]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:17.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:17 smithi183 ceph-mon[32791]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:18.337 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:19.439 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:19 smithi003 ceph-mon[25399]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:19.439 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:19.439 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:19.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:19 smithi183 ceph-mon[32791]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:19.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:19 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:19.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:19 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:20.207 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:20.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:20 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1880196573' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:20.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:20 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1880196573' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:21.567 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:21 smithi003 ceph-mon[25399]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:21.595 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1726042154,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":0} 2024-09-11T08:09:21.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:21 smithi183 ceph-mon[32791]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:22.596 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-11T08:09:22.621 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:22 smithi003 ceph-mon[25399]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-11T08:09:22.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:22 smithi183 ceph-mon[32791]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-09-11T08:09:23.087 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:23.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:23.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: osdmap e38: 8 total, 7 up, 8 in 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:23.719 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:23 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:09:23.726 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:23.726 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-11T08:09:23.726 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: osdmap e38: 8 total, 7 up, 8 in 2024-09-11T08:09:23.726 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:23.726 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]: dispatch 2024-09-11T08:09:23.727 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:23.727 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:23.727 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:23 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:09:24.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:24 smithi003 ceph-mon[25399]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:24.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:24 smithi003 ceph-mon[25399]: osdmap e39: 8 total, 7 up, 8 in 2024-09-11T08:09:24.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:24 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:24.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:24 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:24.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:24 smithi183 ceph-mon[32791]: from='osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-11T08:09:24.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:24 smithi183 ceph-mon[32791]: osdmap e39: 8 total, 7 up, 8 in 2024-09-11T08:09:24.733 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:24 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:24.734 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:24 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:24.747 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: purged_snaps scrub starts 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: purged_snaps scrub ok 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: pgmap v92: 1 pgs: 1 peering; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621] boot 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: osdmap e40: 8 total, 8 up, 8 in 2024-09-11T08:09:25.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:25.469 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/4092516700' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:25.469 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:25.469 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:25.521 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":40,"num_osds":8,"num_up_osds":8,"osd_up_since":1726042164,"num_in_osds":8,"osd_in_since":1726042116,"num_remapped_pgs":1} 2024-09-11T08:09:25.521 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T08:09:25.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: purged_snaps scrub starts 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: purged_snaps scrub ok 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: pgmap v92: 1 pgs: 1 peering; 577 KiB data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: osd.7 [v2:172.21.15.3:6826/2224892621,v1:172.21.15.3:6827/2224892621] boot 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: osdmap e40: 8 total, 8 up, 8 in 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/4092516700' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:26.061 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:26.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:26 smithi003 ceph-mon[25399]: osdmap e41: 8 total, 8 up, 8 in 2024-09-11T08:09:26.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:26 smithi183 ceph-mon[32791]: osdmap e41: 8 total, 8 up, 8 in 2024-09-11T08:09:27.711 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:27 smithi003 ceph-mon[25399]: pgmap v95: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:27.711 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:27 smithi003 ceph-mon[25399]: osdmap e42: 8 total, 8 up, 8 in 2024-09-11T08:09:27.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:27 smithi183 ceph-mon[32791]: pgmap v95: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:27.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:27 smithi183 ceph-mon[32791]: osdmap e42: 8 total, 8 up, 8 in 2024-09-11T08:09:28.436 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:28.436 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":44,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","created":"2024-09-11T08:05:17.548743+0000","modified":"2024-09-11T08:09:28.371067+0000","last_up_change":"2024-09-11T08:09:24.353460+0000","last_in_change":"2024-09-11T08:08:36.642612+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T08:08:58.734619+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"3f5206a2-6cf0-4c47-8ce0-0ef89c443f48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6801","nonce":2010916555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6803","nonce":2010916555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6807","nonce":2010916555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6805","nonce":2010916555}]},"public_addr":"172.21.15.183:6801/2010916555","cluster_addr":"172.21.15.183:6803/2010916555","heartbeat_back_addr":"172.21.15.183:6807/2010916555","heartbeat_front_addr":"172.21.15.183:6805/2010916555","state":["exists","up"]},{"osd":1,"uuid":"dc427b98-9ede-4b6f-bb46-edf1310975f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6803","nonce":1254852374}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6805","nonce":1254852374}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6809","nonce":1254852374}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6807","nonce":1254852374}]},"public_addr":"172.21.15.3:6803/1254852374","cluster_addr":"172.21.15.3:6805/1254852374","heartbeat_back_addr":"172.21.15.3:6809/1254852374","heartbeat_front_addr":"172.21.15.3:6807/1254852374","state":["exists","up"]},{"osd":2,"uuid":"e56b3c1b-922f-4946-bc7b-cb6cba07be69","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.183:6808","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6809","nonce":2815318275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6811","nonce":2815318275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6815","nonce":2815318275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6813","nonce":2815318275}]},"public_addr":"172.21.15.183:6809/2815318275","cluster_addr":"172.21.15.183:6811/2815318275","heartbeat_back_addr":"172.21.15.183:6815/2815318275","heartbeat_front_addr":"172.21.15.183:6813/2815318275","state":["exists","up"]},{"osd":3,"uuid":"9cca24d8-0377-4c1f-97a8-b1953e9d4656","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.3:6810","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6811","nonce":3860307460}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6813","nonce":3860307460}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6817","nonce":3860307460}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6815","nonce":3860307460}]},"public_addr":"172.21.15.3:6811/3860307460","cluster_addr":"172.21.15.3:6813/3860307460","heartbeat_back_addr":"172.21.15.3:6817/3860307460","heartbeat_front_addr":"172.21.15.3:6815/3860307460","state":["exists","up"]},{"osd":4,"uuid":"b755ee6a-c57e-4463-a3ef-c491f180d6c9","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.183:6816","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6817","nonce":2773854855}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6819","nonce":2773854855}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6823","nonce":2773854855}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6821","nonce":2773854855}]},"public_addr":"172.21.15.183:6817/2773854855","cluster_addr":"172.21.15.183:6819/2773854855","heartbeat_back_addr":"172.21.15.183:6823/2773854855","heartbeat_front_addr":"172.21.15.183:6821/2773854855","state":["exists","up"]},{"osd":5,"uuid":"bfc563ed-f0e7-4b0b-a518-0b064dab89d3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6818","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6819","nonce":1379819987}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6821","nonce":1379819987}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6825","nonce":1379819987}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6823","nonce":1379819987}]},"public_addr":"172.21.15.3:6819/1379819987","cluster_addr":"172.21.15.3:6821/1379819987","heartbeat_back_addr":"172.21.15.3:6825/1379819987","heartbeat_front_addr":"172.21.15.3:6823/1379819987","state":["exists","up"]},{"osd":6,"uuid":"57475f88-5612-4687-a984-08c3c0e48cf8","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.183:6824","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6825","nonce":3405344332}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6827","nonce":3405344332}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6831","nonce":3405344332}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6829","nonce":3405344332}]},"public_addr":"172.21.15.183:6825/3405344332","cluster_addr":"172.21.15.183:6827/3405344332","heartbeat_back_addr":"172.21.15.183:6831/3405344332","heartbeat_front_addr":"172.21.15.183:6829/3405344332","state":["exists","up"]},{"osd":7,"uuid":"a5135a4a-c146-4bba-a51b-77c5eaad407b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6827","nonce":2224892621}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6829","nonce":2224892621}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6833","nonce":2224892621}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6831","nonce":2224892621}]},"public_addr":"172.21.15.3:6827/2224892621","cluster_addr":"172.21.15.3:6829/2224892621","heartbeat_back_addr":"172.21.15.3:6833/2224892621","heartbeat_front_addr":"172.21.15.3:6831/2224892621","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:50.724292+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:56.205710+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:55.538758+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:04.395112+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:00.483297+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:13.177905+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:05.388497+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:22.467017+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/2567381994":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/3910090102":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1537748540":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6801/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/2873142556":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6800/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/3039963978":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/4009171235":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1856265842":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/1376383118":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/1220395061":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/396076124":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/1220395061":"2024-09-12T08:07:14.240685+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T08:09:28.436 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:28 smithi003 ceph-mon[25399]: osdmap e43: 8 total, 8 up, 8 in 2024-09-11T08:09:28.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:28 smithi183 ceph-mon[32791]: osdmap e43: 8 total, 8 up, 8 in 2024-09-11T08:09:29.303 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-11T08:08:58.734619+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '24', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}}] 2024-09-11T08:09:29.304 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-11T08:09:29.622 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: pgmap v98: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: osdmap e44: 8 total, 8 up, 8 in 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2143193143' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.623 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:29.655 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: pgmap v98: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: osdmap e44: 8 total, 8 up, 8 in 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2143193143' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:29.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:30.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:30 smithi003 ceph-mon[25399]: Detected new or changed devices on smithi183 2024-09-11T08:09:30.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:30 smithi003 ceph-mon[25399]: Adjusting osd_memory_target on smithi183 to 3984M 2024-09-11T08:09:30.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:30 smithi183 ceph-mon[32791]: Detected new or changed devices on smithi183 2024-09-11T08:09:30.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:30 smithi183 ceph-mon[32791]: Adjusting osd_memory_target on smithi183 to 3984M 2024-09-11T08:09:31.692 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:31 smithi003 ceph-mon[25399]: pgmap v100: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:31.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:31 smithi183 ceph-mon[32791]: pgmap v100: 1 pgs: 1 peering; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:32.637 INFO:teuthology.orchestra.run.smithi003.stdout:pg_num: 1 2024-09-11T08:09:33.242 INFO:tasks.cephadm:Setting up client nodes... 2024-09-11T08:09:33.242 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-11T08:09:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:33 smithi003 ceph-mon[25399]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T08:09:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:33 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:33 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2174655700' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-11T08:09:33.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:33 smithi183 ceph-mon[32791]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-11T08:09:33.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:33.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:33 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:33.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:33 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2174655700' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-09-11T08:09:34.449 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:35.921 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:35 smithi003 ceph-mon[25399]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-09-11T08:09:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:35 smithi183 ceph-mon[32791]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-09-11T08:09:36.504 INFO:teuthology.orchestra.run.smithi003.stdout:[client.0] 2024-09-11T08:09:36.505 INFO:teuthology.orchestra.run.smithi003.stdout: key = AQBAUOFmREzLHRAA6yhLPnjbxS7q/CQcdRkB6g== 2024-09-11T08:09:36.818 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1966629624' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:36.818 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1966629624' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-11T08:09:36.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1966629624' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:36.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1966629624' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-11T08:09:37.391 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:09:37.391 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-11T08:09:37.391 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-11T08:09:37.433 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-11T08:09:37.688 INFO:teuthology.orchestra.run.smithi183.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi183/config 2024-09-11T08:09:37.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:37 smithi183 ceph-mon[32791]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-11T08:09:37.957 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:37 smithi003 ceph-mon[25399]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-11T08:09:39.007 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: Detected new or changed devices on smithi003 2024-09-11T08:09:39.007 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: Adjusting osd_memory_target on smithi003 to 3217M 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:09:39.008 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:09:39.009 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.009 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:09:39.009 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.009 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:38 smithi183 ceph-mon[32791]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T08:09:39.139 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: Detected new or changed devices on smithi003 2024-09-11T08:09:39.139 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.140 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: Adjusting osd_memory_target on smithi003 to 3217M 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:09:39.141 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:09:39.142 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:38 smithi003 ceph-mon[25399]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-11T08:09:39.455 INFO:teuthology.orchestra.run.smithi183.stdout:[client.1] 2024-09-11T08:09:39.455 INFO:teuthology.orchestra.run.smithi183.stdout: key = AQBDUOFmyTvZGhAAg2KKRD3Ark+Ed43KCDFecA== 2024-09-11T08:09:40.349 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:40 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/1277755609' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:40.349 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:40 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:40.349 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:40 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-11T08:09:40.373 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:09:40.373 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-11T08:09:40.373 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-11T08:09:40.412 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-11T08:09:40.412 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-11T08:09:40.412 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph mgr dump --format=json 2024-09-11T08:09:40.437 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:40 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/1277755609' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:40.437 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:40 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-09-11T08:09:40.437 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:40 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-11T08:09:40.848 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:41.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:41 smithi003 ceph-mon[25399]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T08:09:41.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:41 smithi183 ceph-mon[32791]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T08:09:43.469 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:43.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:43 smithi183 ceph-mon[32791]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T08:09:43.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:43 smithi003 ceph-mon[25399]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-11T08:09:44.394 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:44 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/731544964' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-11T08:09:44.394 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:44.449 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:44 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/731544964' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-09-11T08:09:44.449 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:45.018 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":19,"flags":0,"active_gid":14206,"active_name":"smithi003.abfhzj","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6800","nonce":3690983374},{"type":"v1","addr":"172.21.15.3:6801","nonce":3690983374}]},"active_addr":"172.21.15.3:6801/3690983374","active_change":"2024-09-11T08:07:14.240798+0000","active_mgr_features":4540138320759226367,"available":true,"standbys":[{"gid":14224,"name":"smithi183.nqrlko","mgr_features":4540138320759226367,"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"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_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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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_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":[]},"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"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_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_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.1.5","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_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":[]},"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":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"drive_group_interval":{"name":"drive_group_interval","type":"float","level":"advanced","flags":0,"default_value":"300.0","min":"","max":"","enum_allowed":[],"desc":"interval in seconds between re-application of applied drive_groups","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.3:8443/","prometheus":"http://172.21.15.3: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"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":1704361403}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":3104644685}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":3024844131}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":2758460961}]}]} 2024-09-11T08:09:45.025 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-11T08:09:45.026 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-11T08:09:45.026 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T08:09:45.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:45 smithi183 ceph-mon[32791]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:45.614 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:45 smithi003 ceph-mon[25399]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:45.750 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:47.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:47 smithi003 ceph-mon[25399]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:47.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:47 smithi183 ceph-mon[32791]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:48.866 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:48.866 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:48 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:48.866 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:48 smithi003 ceph-mon[25399]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:48.940 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:48.941 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":44,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","created":"2024-09-11T08:05:17.548743+0000","modified":"2024-09-11T08:09:28.371067+0000","last_up_change":"2024-09-11T08:09:24.353460+0000","last_in_change":"2024-09-11T08:08:36.642612+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T08:08:58.734619+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"3f5206a2-6cf0-4c47-8ce0-0ef89c443f48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6801","nonce":2010916555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6803","nonce":2010916555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6807","nonce":2010916555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6805","nonce":2010916555}]},"public_addr":"172.21.15.183:6801/2010916555","cluster_addr":"172.21.15.183:6803/2010916555","heartbeat_back_addr":"172.21.15.183:6807/2010916555","heartbeat_front_addr":"172.21.15.183:6805/2010916555","state":["exists","up"]},{"osd":1,"uuid":"dc427b98-9ede-4b6f-bb46-edf1310975f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6803","nonce":1254852374}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6805","nonce":1254852374}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6809","nonce":1254852374}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6807","nonce":1254852374}]},"public_addr":"172.21.15.3:6803/1254852374","cluster_addr":"172.21.15.3:6805/1254852374","heartbeat_back_addr":"172.21.15.3:6809/1254852374","heartbeat_front_addr":"172.21.15.3:6807/1254852374","state":["exists","up"]},{"osd":2,"uuid":"e56b3c1b-922f-4946-bc7b-cb6cba07be69","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.183:6808","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6809","nonce":2815318275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6811","nonce":2815318275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6815","nonce":2815318275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6813","nonce":2815318275}]},"public_addr":"172.21.15.183:6809/2815318275","cluster_addr":"172.21.15.183:6811/2815318275","heartbeat_back_addr":"172.21.15.183:6815/2815318275","heartbeat_front_addr":"172.21.15.183:6813/2815318275","state":["exists","up"]},{"osd":3,"uuid":"9cca24d8-0377-4c1f-97a8-b1953e9d4656","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.3:6810","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6811","nonce":3860307460}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6813","nonce":3860307460}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6817","nonce":3860307460}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6815","nonce":3860307460}]},"public_addr":"172.21.15.3:6811/3860307460","cluster_addr":"172.21.15.3:6813/3860307460","heartbeat_back_addr":"172.21.15.3:6817/3860307460","heartbeat_front_addr":"172.21.15.3:6815/3860307460","state":["exists","up"]},{"osd":4,"uuid":"b755ee6a-c57e-4463-a3ef-c491f180d6c9","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.183:6816","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6817","nonce":2773854855}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6819","nonce":2773854855}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6823","nonce":2773854855}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6821","nonce":2773854855}]},"public_addr":"172.21.15.183:6817/2773854855","cluster_addr":"172.21.15.183:6819/2773854855","heartbeat_back_addr":"172.21.15.183:6823/2773854855","heartbeat_front_addr":"172.21.15.183:6821/2773854855","state":["exists","up"]},{"osd":5,"uuid":"bfc563ed-f0e7-4b0b-a518-0b064dab89d3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6818","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6819","nonce":1379819987}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6821","nonce":1379819987}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6825","nonce":1379819987}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6823","nonce":1379819987}]},"public_addr":"172.21.15.3:6819/1379819987","cluster_addr":"172.21.15.3:6821/1379819987","heartbeat_back_addr":"172.21.15.3:6825/1379819987","heartbeat_front_addr":"172.21.15.3:6823/1379819987","state":["exists","up"]},{"osd":6,"uuid":"57475f88-5612-4687-a984-08c3c0e48cf8","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.183:6824","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6825","nonce":3405344332}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6827","nonce":3405344332}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6831","nonce":3405344332}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6829","nonce":3405344332}]},"public_addr":"172.21.15.183:6825/3405344332","cluster_addr":"172.21.15.183:6827/3405344332","heartbeat_back_addr":"172.21.15.183:6831/3405344332","heartbeat_front_addr":"172.21.15.183:6829/3405344332","state":["exists","up"]},{"osd":7,"uuid":"a5135a4a-c146-4bba-a51b-77c5eaad407b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6827","nonce":2224892621}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6829","nonce":2224892621}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6833","nonce":2224892621}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6831","nonce":2224892621}]},"public_addr":"172.21.15.3:6827/2224892621","cluster_addr":"172.21.15.3:6829/2224892621","heartbeat_back_addr":"172.21.15.3:6833/2224892621","heartbeat_front_addr":"172.21.15.3:6831/2224892621","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:50.724292+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:56.205710+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:55.538758+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:04.395112+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:00.483297+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:13.177905+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:05.388497+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:22.467017+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/2567381994":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/3910090102":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1537748540":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6801/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/2873142556":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6800/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/3039963978":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/4009171235":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1856265842":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/1376383118":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/1220395061":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/396076124":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/1220395061":"2024-09-12T08:07:14.240685+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T08:09:49.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:49.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:48 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:49.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:48 smithi183 ceph-mon[32791]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:49.562 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-11T08:09:49.562 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-11T08:09:49.923 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:49 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3535327504' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:50.205 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:50.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:49 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3535327504' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:51.443 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:51.443 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:51 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:51.443 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:51 smithi003 ceph-mon[25399]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:51.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:51.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:51 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:09:51.482 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:51 smithi183 ceph-mon[32791]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:51.816 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:09:51.817 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":44,"fsid":"37f299f8-7014-11ef-bcea-c7b262605968","created":"2024-09-11T08:05:17.548743+0000","modified":"2024-09-11T08:09:28.371067+0000","last_up_change":"2024-09-11T08:09:24.353460+0000","last_in_change":"2024-09-11T08:08:36.642612+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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":"quincy","pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-11T08:08:58.734619+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"24","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}}}],"osds":[{"osd":0,"uuid":"3f5206a2-6cf0-4c47-8ce0-0ef89c443f48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":42,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6801","nonce":2010916555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6803","nonce":2010916555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6807","nonce":2010916555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":2010916555},{"type":"v1","addr":"172.21.15.183:6805","nonce":2010916555}]},"public_addr":"172.21.15.183:6801/2010916555","cluster_addr":"172.21.15.183:6803/2010916555","heartbeat_back_addr":"172.21.15.183:6807/2010916555","heartbeat_front_addr":"172.21.15.183:6805/2010916555","state":["exists","up"]},{"osd":1,"uuid":"dc427b98-9ede-4b6f-bb46-edf1310975f5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":32,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6803","nonce":1254852374}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6805","nonce":1254852374}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6809","nonce":1254852374}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1254852374},{"type":"v1","addr":"172.21.15.3:6807","nonce":1254852374}]},"public_addr":"172.21.15.3:6803/1254852374","cluster_addr":"172.21.15.3:6805/1254852374","heartbeat_back_addr":"172.21.15.3:6809/1254852374","heartbeat_front_addr":"172.21.15.3:6807/1254852374","state":["exists","up"]},{"osd":2,"uuid":"e56b3c1b-922f-4946-bc7b-cb6cba07be69","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.183:6808","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6809","nonce":2815318275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6811","nonce":2815318275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6815","nonce":2815318275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":2815318275},{"type":"v1","addr":"172.21.15.183:6813","nonce":2815318275}]},"public_addr":"172.21.15.183:6809/2815318275","cluster_addr":"172.21.15.183:6811/2815318275","heartbeat_back_addr":"172.21.15.183:6815/2815318275","heartbeat_front_addr":"172.21.15.183:6813/2815318275","state":["exists","up"]},{"osd":3,"uuid":"9cca24d8-0377-4c1f-97a8-b1953e9d4656","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.3:6810","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6811","nonce":3860307460}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6813","nonce":3860307460}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6817","nonce":3860307460}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3860307460},{"type":"v1","addr":"172.21.15.3:6815","nonce":3860307460}]},"public_addr":"172.21.15.3:6811/3860307460","cluster_addr":"172.21.15.3:6813/3860307460","heartbeat_back_addr":"172.21.15.3:6817/3860307460","heartbeat_front_addr":"172.21.15.3:6815/3860307460","state":["exists","up"]},{"osd":4,"uuid":"b755ee6a-c57e-4463-a3ef-c491f180d6c9","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.183:6816","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6817","nonce":2773854855}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6819","nonce":2773854855}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6823","nonce":2773854855}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":2773854855},{"type":"v1","addr":"172.21.15.183:6821","nonce":2773854855}]},"public_addr":"172.21.15.183:6817/2773854855","cluster_addr":"172.21.15.183:6819/2773854855","heartbeat_back_addr":"172.21.15.183:6823/2773854855","heartbeat_front_addr":"172.21.15.183:6821/2773854855","state":["exists","up"]},{"osd":5,"uuid":"bfc563ed-f0e7-4b0b-a518-0b064dab89d3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6818","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6819","nonce":1379819987}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6821","nonce":1379819987}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6825","nonce":1379819987}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":1379819987},{"type":"v1","addr":"172.21.15.3:6823","nonce":1379819987}]},"public_addr":"172.21.15.3:6819/1379819987","cluster_addr":"172.21.15.3:6821/1379819987","heartbeat_back_addr":"172.21.15.3:6825/1379819987","heartbeat_front_addr":"172.21.15.3:6823/1379819987","state":["exists","up"]},{"osd":6,"uuid":"57475f88-5612-4687-a984-08c3c0e48cf8","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.183:6824","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6825","nonce":3405344332}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6827","nonce":3405344332}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6831","nonce":3405344332}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":3405344332},{"type":"v1","addr":"172.21.15.183:6829","nonce":3405344332}]},"public_addr":"172.21.15.183:6825/3405344332","cluster_addr":"172.21.15.183:6827/3405344332","heartbeat_back_addr":"172.21.15.183:6831/3405344332","heartbeat_front_addr":"172.21.15.183:6829/3405344332","state":["exists","up"]},{"osd":7,"uuid":"a5135a4a-c146-4bba-a51b-77c5eaad407b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":40,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6827","nonce":2224892621}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6829","nonce":2224892621}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6833","nonce":2224892621}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":2224892621},{"type":"v1","addr":"172.21.15.3:6831","nonce":2224892621}]},"public_addr":"172.21.15.3:6827/2224892621","cluster_addr":"172.21.15.3:6829/2224892621","heartbeat_back_addr":"172.21.15.3:6833/2224892621","heartbeat_front_addr":"172.21.15.3:6831/2224892621","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:50.724292+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:56.205710+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:08:55.538758+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:04.395112+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:00.483297+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:13.177905+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:05.388497+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138320759226367,"old_weight":0,"last_purged_snaps_scrub":"2024-09-11T08:09:22.467017+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/2567381994":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/3910090102":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1537748540":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6801/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/2873142556":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6800/3773398849":"2024-09-12T08:05:38.514558+0000","172.21.15.3:0/3039963978":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/4009171235":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/1856265842":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/3540883781":"2024-09-12T08:06:14.658077+0000","172.21.15.3:0/1376383118":"2024-09-12T08:06:14.658077+0000","172.21.15.3:6801/1220395061":"2024-09-12T08:07:14.240685+0000","172.21.15.3:0/396076124":"2024-09-12T08:05:38.514558+0000","172.21.15.3:6800/1220395061":"2024-09-12T08:07:14.240685+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-11T08:09:52.415 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-11T08:09:52.415 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-11T08:09:52.415 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-11T08:09:52.416 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-11T08:09:52.416 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-11T08:09:52.417 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-11T08:09:52.417 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-11T08:09:52.418 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-11T08:09:52.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:52 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3126007757' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:52.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:52 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3126007757' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-09-11T08:09:52.931 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.966 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.967 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.969 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.975 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.978 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.979 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:52.983 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:09:53.395 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:53 smithi003 ceph-mon[25399]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:53.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:53 smithi183 ceph-mon[32791]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:55.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:55 smithi183 ceph-mon[32791]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:55.674 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:55 smithi003 ceph-mon[25399]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:57.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:57 smithi003 ceph-mon[25399]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:57.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:57 smithi183 ceph-mon[32791]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:59.609 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:59 smithi003 ceph-mon[25399]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:59.609 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:09:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:09:59.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:59 smithi183 ceph-mon[32791]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:09:59.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:09:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:00.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:00 smithi003 ceph-mon[25399]: overall HEALTH_OK 2024-09-11T08:10:00.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:00 smithi183 ceph-mon[32791]: overall HEALTH_OK 2024-09-11T08:10:01.382 INFO:teuthology.orchestra.run.smithi003.stdout:85899345935 2024-09-11T08:10:01.382 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-11T08:10:01.676 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:01 smithi003 ceph-mon[25399]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:01.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:01 smithi183 ceph-mon[32791]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:03.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:03 smithi003 ceph-mon[25399]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:03.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:03 smithi183 ceph-mon[32791]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:04.004 INFO:teuthology.orchestra.run.smithi003.stdout:90194313231 2024-09-11T08:10:04.005 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-11T08:10:05.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:05 smithi003 ceph-mon[25399]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:05.403 INFO:teuthology.orchestra.run.smithi003.stdout:124554051597 2024-09-11T08:10:05.403 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-11T08:10:05.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:05 smithi183 ceph-mon[32791]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:06.481 INFO:teuthology.orchestra.run.smithi003.stdout:107374182416 2024-09-11T08:10:06.481 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-11T08:10:07.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:07 smithi003 ceph-mon[25399]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:07.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:07 smithi183 ceph-mon[32791]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:08.702 INFO:teuthology.orchestra.run.smithi003.stdout:68719476754 2024-09-11T08:10:08.702 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-11T08:10:09.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:09 smithi003 ceph-mon[25399]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:09.550 INFO:teuthology.orchestra.run.smithi003.stdout:128849018894 2024-09-11T08:10:09.551 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-11T08:10:09.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:09 smithi183 ceph-mon[32791]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:10.000 INFO:teuthology.orchestra.run.smithi003.stdout:154618822668 2024-09-11T08:10:10.000 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-11T08:10:10.112 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:10.114 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:10.600 INFO:teuthology.orchestra.run.smithi003.stdout:171798691851 2024-09-11T08:10:10.600 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-11T08:10:10.650 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:10.697 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:11.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:11 smithi003 ceph-mon[25399]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:11.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:11 smithi183 ceph-mon[32791]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:13.187 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:13.189 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:13.663 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:13 smithi003 ceph-mon[25399]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:13.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:13 smithi183 ceph-mon[32791]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:14.663 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:14.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:15.299 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:15.394 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:15 smithi003 ceph-mon[25399]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:15.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:15 smithi183 ceph-mon[32791]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:17.155 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:17.190 INFO:teuthology.orchestra.run.smithi003.stdout:90194313234 2024-09-11T08:10:17.334 INFO:teuthology.orchestra.run.smithi003.stdout:68719476756 2024-09-11T08:10:17.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:17 smithi003 ceph-mon[25399]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:17.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:17 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3504389589' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-11T08:10:17.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:17 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1820652811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-11T08:10:17.620 INFO:teuthology.orchestra.run.smithi003.stdout:85899345938 2024-09-11T08:10:17.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:17 smithi183 ceph-mon[32791]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:17.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:17 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3504389589' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-09-11T08:10:17.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:17 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1820652811' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-09-11T08:10:18.342 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345935 got 85899345938 for osd.2 2024-09-11T08:10:18.343 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:18.567 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:18 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/615331769' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-11T08:10:18.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:18 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/615331769' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-09-11T08:10:19.061 INFO:teuthology.orchestra.run.smithi003.stdout:107374182419 2024-09-11T08:10:19.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:19 smithi003 ceph-mon[25399]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:19.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:19 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3453753755' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-11T08:10:19.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:19 smithi183 ceph-mon[32791]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:19.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:19 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3453753755' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-09-11T08:10:20.394 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313231 got 90194313234 for osd.1 2024-09-11T08:10:20.395 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:21.079 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182416 got 107374182419 for osd.4 2024-09-11T08:10:21.080 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:21.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:21 smithi003 ceph-mon[25399]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:21.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:21 smithi183 ceph-mon[32791]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:21.989 INFO:teuthology.orchestra.run.smithi003.stdout:154618822671 2024-09-11T08:10:22.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:22 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/815075222' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-11T08:10:22.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:22 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/815075222' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-09-11T08:10:22.972 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822668 got 154618822671 for osd.5 2024-09-11T08:10:22.973 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:23.414 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476754 got 68719476756 for osd.0 2024-09-11T08:10:23.414 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:23.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:23 smithi003 ceph-mon[25399]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:23.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:23 smithi183 ceph-mon[32791]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:24.830 INFO:teuthology.orchestra.run.smithi003.stdout:124554051602 2024-09-11T08:10:25.039 INFO:teuthology.orchestra.run.smithi003.stdout:128849018898 2024-09-11T08:10:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:25 smithi003 ceph-mon[25399]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1808211842' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-11T08:10:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3498076271' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-11T08:10:25.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:25 smithi183 ceph-mon[32791]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:25.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1808211842' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-09-11T08:10:25.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3498076271' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-09-11T08:10:25.912 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018894 got 128849018898 for osd.6 2024-09-11T08:10:25.912 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:26.238 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051597 got 124554051602 for osd.3 2024-09-11T08:10:26.238 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:27.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:27 smithi003 ceph-mon[25399]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:27.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:27 smithi183 ceph-mon[32791]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:27.738 INFO:teuthology.orchestra.run.smithi003.stdout:171798691855 2024-09-11T08:10:28.462 INFO:tasks.cephadm.ceph_manager.ceph:need seq 171798691851 got 171798691855 for osd.7 2024-09-11T08:10:28.462 DEBUG:teuthology.parallel:result is None 2024-09-11T08:10:28.462 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-11T08:10:28.463 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T08:10:28.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:28 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/7371508' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-11T08:10:28.719 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:28.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:28 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/7371508' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-09-11T08:10:29.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:29 smithi003 ceph-mon[25399]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:29.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:29.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:29 smithi183 ceph-mon[32791]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:29.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:30.377 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:10:30.378 INFO:teuthology.orchestra.run.smithi003.stderr:dumped all 2024-09-11T08:10:31.080 INFO:teuthology.orchestra.run.smithi003.stdout:{"pg_ready":true,"pg_map":{"version":130,"stamp":"2024-09-11T08:10:30.277412+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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"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":2384120,"kb_used_data":5244,"kb_used_omap":13,"kb_used_meta":2378738,"kb_avail":747544328,"statfs":{"total":767926730752,"available":765485391872,"internally_reserved":0,"allocated":5369856,"data_stored":3216732,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13632,"internal_metadata":2435828416},"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.002150"},"pg_stats":[{"pgid":"1.0","version":"27'152","reported_seq":226,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-11T08:09:28.382289+0000","last_change":"2024-09-11T08:09:28.382289+0000","last_active":"2024-09-11T08:09:28.382289+0000","last_peered":"2024-09-11T08:09:28.382289+0000","last_clean":"2024-09-11T08:09:28.382289+0000","last_became_active":"2024-09-11T08:09:28.381795+0000","last_became_peered":"2024-09-11T08:09:28.381795+0000","last_unstale":"2024-09-11T08:09:28.382289+0000","last_undegraded":"2024-09-11T08:09:28.382289+0000","last_fullsized":"2024-09-11T08:09:28.382289+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T08:08:58.784762+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T08:08:58.784762+0000","last_clean_scrub_stamp":"2024-09-11T08:08:58.784762+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T13:25:53.109558+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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":40,"seq":171798691855,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298372,"kb_used_data":1016,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442684,"statfs":{"total":95990841344,"available":95685308416,"internally_reserved":0,"allocated":1040384,"data_stored":770936,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"last":0.40200000000000002},{"interface":"front","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.504}]},{"osd":1,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"last":0.46600000000000003},{"interface":"front","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.32000000000000001}]},{"osd":2,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.81799999999999995,"5min":0.81799999999999995,"15min":0.81799999999999995},"last":0.57099999999999995}]},{"osd":3,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.81299999999999994,"5min":0.81299999999999994,"15min":0.81299999999999994},"last":0.42199999999999999},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.79700000000000004,"5min":0.79700000000000004,"15min":0.79700000000000004},"last":0.372}]},{"osd":4,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":0.85699999999999998,"5min":0.85699999999999998,"15min":0.85699999999999998},"last":0.45000000000000001},{"interface":"front","average":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.52000000000000002}]},{"osd":5,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.78500000000000003,"5min":0.78500000000000003,"15min":0.78500000000000003},"last":0.60799999999999998},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.84699999999999998,"5min":0.84699999999999998,"15min":0.84699999999999998},"last":0.55600000000000005}]},{"osd":6,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.86799999999999999,"5min":0.86799999999999999,"15min":0.86799999999999999},"last":0.59199999999999997},{"interface":"front","average":{"1min":0.624,"5min":0.624,"15min":0.624},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":0.88200000000000001,"5min":0.88200000000000001,"15min":0.88200000000000001},"last":0.54100000000000004}]}]},{"osd":5,"up_from":36,"seq":154618822673,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297800,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443256,"statfs":{"total":95990841344,"available":95685894144,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.56499999999999995},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.747,"5min":0.747,"15min":0.747},"last":0.76500000000000001}]},{"osd":1,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"last":0.38400000000000001},{"interface":"front","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.51800000000000002}]},{"osd":2,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.58399999999999996},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.65400000000000003}]},{"osd":3,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.58899999999999997,"5min":0.58899999999999997,"15min":0.58899999999999997},"last":0.59699999999999998},{"interface":"front","average":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.69099999999999995,"5min":0.69099999999999995,"15min":0.69099999999999995},"last":0.43099999999999999}]},{"osd":4,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.73699999999999999},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.623}]},{"osd":6,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"min":{"1min":0.42199999999999999,"5min":0.42199999999999999,"15min":0.42199999999999999},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.72099999999999997},{"interface":"front","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":0.79100000000000004,"5min":0.79100000000000004,"15min":0.79100000000000004},"last":0.68999999999999995}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.46700000000000003}]}]},{"osd":6,"up_from":30,"seq":128849018899,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297804,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443252,"statfs":{"total":95990841344,"available":95685890048,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"last":0.31900000000000001},{"interface":"front","average":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.39100000000000001}]},{"osd":1,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"last":0.68000000000000005},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.54800000000000004}]},{"osd":2,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.63200000000000001,"5min":0.63200000000000001,"15min":0.63200000000000001},"last":0.36199999999999999},{"interface":"front","average":{"1min":0.44,"5min":0.44,"15min":0.44},"min":{"1min":0.28199999999999997,"5min":0.28199999999999997,"15min":0.28199999999999997},"max":{"1min":0.61899999999999999,"5min":0.61899999999999999,"15min":0.61899999999999999},"last":0.432}]},{"osd":3,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.56599999999999995},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.69499999999999995}]},{"osd":4,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.46300000000000002,"5min":0.46300000000000002,"15min":0.46300000000000002},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.47699999999999998},{"interface":"front","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.35099999999999998}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.60399999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"min":{"1min":0.44900000000000001,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.66700000000000004}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.57699999999999996},{"interface":"front","average":{"1min":0.623,"5min":0.623,"15min":0.623},"min":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.75700000000000001}]}]},{"osd":3,"up_from":29,"seq":124554051603,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298368,"kb_used_data":1012,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442688,"statfs":{"total":95990841344,"available":95685312512,"internally_reserved":0,"allocated":1036288,"data_stored":770347,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.57399999999999995}]},{"osd":1,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"last":0.29699999999999999},{"interface":"front","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.28000000000000003}]},{"osd":2,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.61399999999999999},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.434,"5min":0.434,"15min":0.434},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.64100000000000001}]},{"osd":4,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.65900000000000003,"5min":0.65900000000000003,"15min":0.65900000000000003},"last":0.66100000000000003},{"interface":"front","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.46600000000000003}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"last":0.35699999999999998},{"interface":"front","average":{"1min":0.42499999999999999,"5min":0.42499999999999999,"15min":0.42499999999999999},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"last":0.316}]},{"osd":6,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.56000000000000005},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.629}]},{"osd":7,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.33000000000000002},{"interface":"front","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.627,"5min":0.627,"15min":0.627},"last":0.37}]}]},{"osd":4,"up_from":25,"seq":107374182421,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297804,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443252,"statfs":{"total":95990841344,"available":95685890048,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"min":{"1min":0.224,"5min":0.224,"15min":0.224},"max":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"last":0.31}]},{"osd":1,"last update":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"last":0.50800000000000001},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.42899999999999999}]},{"osd":2,"last update":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.248,"5min":0.248,"15min":0.248},"max":{"1min":0.621,"5min":0.621,"15min":0.621},"last":0.371},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"last":0.39900000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.41399999999999998},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.45800000000000002}]},{"osd":5,"last update":"Wed Sep 11 08:10:18 2024","interfaces":[{"interface":"back","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.48899999999999999}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.39100000000000001},{"interface":"front","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.59999999999999998,"5min":0.59999999999999998,"15min":0.59999999999999998},"last":0.53700000000000003}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.52900000000000003}]}]},{"osd":1,"up_from":21,"seq":90194313237,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297796,"kb_used_data":436,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443260,"statfs":{"total":95990841344,"available":95685898240,"internally_reserved":0,"allocated":446464,"data_stored":180626,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:59 2024","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.40300000000000002},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.53100000000000003}]},{"osd":2,"last update":"Wed Sep 11 08:09:59 2024","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"max":{"1min":0.80700000000000005,"5min":0.80700000000000005,"15min":0.80700000000000005},"last":0.36399999999999999},{"interface":"front","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.33100000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.29399999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.41399999999999998},{"interface":"front","average":{"1min":0.45400000000000001,"5min":0.45400000000000001,"15min":0.45400000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.67400000000000004,"5min":0.67400000000000004,"15min":0.67400000000000004},"last":0.54600000000000004}]},{"osd":4,"last update":"Wed Sep 11 08:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"min":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.46300000000000002},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.82799999999999996,"5min":0.82799999999999996,"15min":0.82799999999999996},"last":0.47399999999999998}]},{"osd":5,"last update":"Wed Sep 11 08:10:20 2024","interfaces":[{"interface":"back","average":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"min":{"1min":0.313,"5min":0.313,"15min":0.313},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.51300000000000001}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.58499999999999996}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.76600000000000001,"5min":0.76600000000000001,"15min":0.76600000000000001},"last":0.57199999999999995}]}]},{"osd":2,"up_from":20,"seq":85899345941,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297800,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443256,"statfs":{"total":95990841344,"available":95685894144,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.22900000000000001,"5min":0.22900000000000001,"15min":0.22900000000000001},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"last":0.47199999999999998}]},{"osd":1,"last update":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1000000000000001,"15min":1.1000000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":10.987,"5min":10.987,"15min":10.987},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.52600000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:07 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.625},{"interface":"front","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.63}]},{"osd":4,"last update":"Wed Sep 11 08:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"last":0.40200000000000002},{"interface":"front","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"last":0.44500000000000001}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":1.123,"5min":1.123,"15min":1.123},"min":{"1min":0.42199999999999999,"5min":0.42199999999999999,"15min":0.42199999999999999},"max":{"1min":11.007999999999999,"5min":11.007999999999999,"15min":11.007999999999999},"last":0.58099999999999996},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.56399999999999995}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.48399999999999999,"5min":0.48399999999999999,"15min":0.48399999999999999},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.51300000000000001},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.54100000000000004}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.64400000000000002}]}]},{"osd":0,"up_from":16,"seq":68719476759,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298376,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442680,"statfs":{"total":95990841344,"available":95685304320,"internally_reserved":0,"allocated":1044480,"data_stored":771259,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.26000000000000001,"5min":0.26000000000000001,"15min":0.26000000000000001},"max":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"last":0.52800000000000002},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.64900000000000002,"5min":0.64900000000000002,"15min":0.64900000000000002},"last":0.40500000000000003}]},{"osd":2,"last update":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"min":{"1min":0.214,"5min":0.214,"15min":0.214},"max":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"last":0.34599999999999997},{"interface":"front","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"last":0.35699999999999998}]},{"osd":3,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.52600000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.50800000000000001}]},{"osd":4,"last update":"Wed Sep 11 08:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"last":0.47399999999999998},{"interface":"front","average":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.45000000000000001}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.65900000000000003},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.61399999999999999}]},{"osd":6,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.67100000000000004,"5min":0.67100000000000004,"15min":0.67100000000000004},"last":0.43099999999999999},{"interface":"front","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.81100000000000005,"5min":0.81100000000000005,"15min":0.81100000000000005},"last":0.55600000000000005}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.63400000000000001},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.58999999999999997}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-11T08:10:31.082 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-11T08:10:31.345 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:31.702 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:31 smithi003 ceph-mon[25399]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:31.702 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:31 smithi003 ceph-mon[25399]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:10:31.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:31 smithi183 ceph-mon[32791]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:31.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:31 smithi183 ceph-mon[32791]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:10:33.197 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:10:33.197 INFO:teuthology.orchestra.run.smithi003.stderr:dumped all 2024-09-11T08:10:33.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:33 smithi003 ceph-mon[25399]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:33.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:33 smithi183 ceph-mon[32791]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:33.842 INFO:teuthology.orchestra.run.smithi003.stdout:{"pg_ready":true,"pg_map":{"version":131,"stamp":"2024-09-11T08:10:32.277756+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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"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":2384120,"kb_used_data":5244,"kb_used_omap":13,"kb_used_meta":2378738,"kb_avail":747544328,"statfs":{"total":767926730752,"available":765485391872,"internally_reserved":0,"allocated":5369856,"data_stored":3216732,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":13632,"internal_metadata":2435828416},"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.002090"},"pg_stats":[{"pgid":"1.0","version":"27'152","reported_seq":226,"reported_epoch":44,"state":"active+clean","last_fresh":"2024-09-11T08:09:28.382289+0000","last_change":"2024-09-11T08:09:28.382289+0000","last_active":"2024-09-11T08:09:28.382289+0000","last_peered":"2024-09-11T08:09:28.382289+0000","last_clean":"2024-09-11T08:09:28.382289+0000","last_became_active":"2024-09-11T08:09:28.381795+0000","last_became_peered":"2024-09-11T08:09:28.381795+0000","last_unstale":"2024-09-11T08:09:28.382289+0000","last_undegraded":"2024-09-11T08:09:28.382289+0000","last_fullsized":"2024-09-11T08:09:28.382289+0000","mapping_epoch":43,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":44,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-11T08:08:58.784762+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-11T08:08:58.784762+0000","last_clean_scrub_stamp":"2024-09-11T08:08:58.784762+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-12T13:25:53.109558+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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":100,"num_read_kb":85,"num_write":189,"num_write_kb":3716,"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":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":40,"seq":171798691856,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298372,"kb_used_data":1016,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442684,"statfs":{"total":95990841344,"available":95685308416,"internally_reserved":0,"allocated":1040384,"data_stored":770936,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.68400000000000005,"5min":0.68400000000000005,"15min":0.68400000000000005},"last":0.46300000000000002},{"interface":"front","average":{"1min":0.54200000000000004,"5min":0.54200000000000004,"15min":0.54200000000000004},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.41799999999999998}]},{"osd":1,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.27700000000000002,"5min":0.27700000000000002,"15min":0.27700000000000002},"max":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"last":0.27300000000000002},{"interface":"front","average":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.28699999999999998}]},{"osd":2,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.43099999999999999},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.34599999999999997,"5min":0.34599999999999997,"15min":0.34599999999999997},"max":{"1min":0.81799999999999995,"5min":0.81799999999999995,"15min":0.81799999999999995},"last":0.51900000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"min":{"1min":0.30099999999999999,"5min":0.30099999999999999,"15min":0.30099999999999999},"max":{"1min":0.81299999999999994,"5min":0.81299999999999994,"15min":0.81299999999999994},"last":0.34999999999999998},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.79700000000000004,"5min":0.79700000000000004,"15min":0.79700000000000004},"last":0.33200000000000002}]},{"osd":4,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":0.85699999999999998,"5min":0.85699999999999998,"15min":0.85699999999999998},"last":0.40600000000000003},{"interface":"front","average":{"1min":0.57499999999999996,"5min":0.57499999999999996,"15min":0.57499999999999996},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.47899999999999998}]},{"osd":5,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.78500000000000003,"5min":0.78500000000000003,"15min":0.78500000000000003},"last":0.309},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.84699999999999998,"5min":0.84699999999999998,"15min":0.84699999999999998},"last":0.38100000000000001}]},{"osd":6,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.60999999999999999,"5min":0.60999999999999999,"15min":0.60999999999999999},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.86799999999999999,"5min":0.86799999999999999,"15min":0.86799999999999999},"last":0.497},{"interface":"front","average":{"1min":0.624,"5min":0.624,"15min":0.624},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":0.88200000000000001,"5min":0.88200000000000001,"15min":0.88200000000000001},"last":0.44800000000000001}]}]},{"osd":5,"up_from":36,"seq":154618822674,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297800,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443256,"statfs":{"total":95990841344,"available":95685894144,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"max":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"last":0.70599999999999996},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.747,"5min":0.747,"15min":0.747},"last":0.68200000000000005}]},{"osd":1,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"last":0.48899999999999999},{"interface":"front","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.44700000000000001}]},{"osd":2,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.56799999999999995,"5min":0.56799999999999995,"15min":0.56799999999999995},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.58999999999999997},{"interface":"front","average":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"min":{"1min":0.34000000000000002,"5min":0.34000000000000002,"15min":0.34000000000000002},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.63900000000000001}]},{"osd":3,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"min":{"1min":0.28399999999999997,"5min":0.28399999999999997,"15min":0.28399999999999997},"max":{"1min":0.58899999999999997,"5min":0.58899999999999997,"15min":0.58899999999999997},"last":0.46700000000000003},{"interface":"front","average":{"1min":0.44400000000000001,"5min":0.44400000000000001,"15min":0.44400000000000001},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.69099999999999995,"5min":0.69099999999999995,"15min":0.69099999999999995},"last":0.56100000000000005}]},{"osd":4,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.65800000000000003},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.73699999999999999}]},{"osd":6,"last update":"Wed Sep 11 08:10:15 2024","interfaces":[{"interface":"back","average":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"min":{"1min":0.42199999999999999,"5min":0.42199999999999999,"15min":0.42199999999999999},"max":{"1min":0.78300000000000003,"5min":0.78300000000000003,"15min":0.78300000000000003},"last":0.71899999999999997},{"interface":"front","average":{"1min":0.60799999999999998,"5min":0.60799999999999998,"15min":0.60799999999999998},"min":{"1min":0.45500000000000002,"5min":0.45500000000000002,"15min":0.45500000000000002},"max":{"1min":0.79100000000000004,"5min":0.79100000000000004,"15min":0.79100000000000004},"last":0.77400000000000002}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.29599999999999999,"5min":0.29599999999999999,"15min":0.29599999999999999},"max":{"1min":0.73899999999999999,"5min":0.73899999999999999,"15min":0.73899999999999999},"last":0.67000000000000004},{"interface":"front","average":{"1min":0.52400000000000002,"5min":0.52400000000000002,"15min":0.52400000000000002},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.98799999999999999,"5min":0.98799999999999999,"15min":0.98799999999999999},"last":0.69299999999999995}]}]},{"osd":6,"up_from":30,"seq":128849018899,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297804,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443252,"statfs":{"total":95990841344,"available":95685890048,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"min":{"1min":0.23400000000000001,"5min":0.23400000000000001,"15min":0.23400000000000001},"max":{"1min":0.60699999999999998,"5min":0.60699999999999998,"15min":0.60699999999999998},"last":0.31900000000000001},{"interface":"front","average":{"1min":0.38400000000000001,"5min":0.38400000000000001,"15min":0.38400000000000001},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.503,"5min":0.503,"15min":0.503},"last":0.39100000000000001}]},{"osd":1,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"last":0.68000000000000005},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.33100000000000002,"5min":0.33100000000000002,"15min":0.33100000000000002},"max":{"1min":0.75,"5min":0.75,"15min":0.75},"last":0.54800000000000004}]},{"osd":2,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.63200000000000001,"5min":0.63200000000000001,"15min":0.63200000000000001},"last":0.36199999999999999},{"interface":"front","average":{"1min":0.44,"5min":0.44,"15min":0.44},"min":{"1min":0.28199999999999997,"5min":0.28199999999999997,"15min":0.28199999999999997},"max":{"1min":0.61899999999999999,"5min":0.61899999999999999,"15min":0.61899999999999999},"last":0.432}]},{"osd":3,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.56599999999999995},{"interface":"front","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.80000000000000004,"5min":0.80000000000000004,"15min":0.80000000000000004},"last":0.69499999999999995}]},{"osd":4,"last update":"Wed Sep 11 08:10:10 2024","interfaces":[{"interface":"back","average":{"1min":0.46300000000000002,"5min":0.46300000000000002,"15min":0.46300000000000002},"min":{"1min":0.33600000000000002,"5min":0.33600000000000002,"15min":0.33600000000000002},"max":{"1min":0.65700000000000003,"5min":0.65700000000000003,"15min":0.65700000000000003},"last":0.47699999999999998},{"interface":"front","average":{"1min":0.499,"5min":0.499,"15min":0.499},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.35099999999999998}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.73399999999999999,"5min":0.73399999999999999,"15min":0.73399999999999999},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.60399999999999998,"5min":0.60399999999999998,"15min":0.60399999999999998},"min":{"1min":0.44900000000000001,"5min":0.44900000000000001,"15min":0.44900000000000001},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.66700000000000004}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.57699999999999996},{"interface":"front","average":{"1min":0.623,"5min":0.623,"15min":0.623},"min":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.75700000000000001}]}]},{"osd":3,"up_from":29,"seq":124554051604,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298368,"kb_used_data":1012,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442688,"statfs":{"total":95990841344,"available":95685312512,"internally_reserved":0,"allocated":1036288,"data_stored":770347,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.56499999999999995},{"interface":"front","average":{"1min":0.52700000000000002,"5min":0.52700000000000002,"15min":0.52700000000000002},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.80200000000000005}]},{"osd":1,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.38300000000000001,"5min":0.38300000000000001,"15min":0.38300000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.52200000000000002,"5min":0.52200000000000002,"15min":0.52200000000000002},"last":0.47799999999999998},{"interface":"front","average":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"min":{"1min":0.28599999999999998,"5min":0.28599999999999998,"15min":0.28599999999999998},"max":{"1min":0.70499999999999996,"5min":0.70499999999999996,"15min":0.70499999999999996},"last":0.878}]},{"osd":2,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.625},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.434,"5min":0.434,"15min":0.434},"max":{"1min":0.745,"5min":0.745,"15min":0.745},"last":0.69699999999999995}]},{"osd":4,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"min":{"1min":0.41199999999999998,"5min":0.41199999999999998,"15min":0.41199999999999998},"max":{"1min":0.65900000000000003,"5min":0.65900000000000003,"15min":0.65900000000000003},"last":0.78100000000000003},{"interface":"front","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.68799999999999994,"5min":0.68799999999999994,"15min":0.68799999999999994},"last":0.66200000000000003}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"min":{"1min":0.35799999999999998,"5min":0.35799999999999998,"15min":0.35799999999999998},"max":{"1min":0.66800000000000004,"5min":0.66800000000000004,"15min":0.66800000000000004},"last":0.73299999999999998},{"interface":"front","average":{"1min":0.42499999999999999,"5min":0.42499999999999999,"15min":0.42499999999999999},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"last":0.68999999999999995}]},{"osd":6,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"max":{"1min":0.746,"5min":0.746,"15min":0.746},"last":0.76200000000000001},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.48999999999999999,"5min":0.48999999999999999,"15min":0.48999999999999999},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.84599999999999997}]},{"osd":7,"last update":"Wed Sep 11 08:10:24 2024","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.72199999999999998,"5min":0.72199999999999998,"15min":0.72199999999999998},"last":0.81899999999999995},{"interface":"front","average":{"1min":0.49299999999999999,"5min":0.49299999999999999,"15min":0.49299999999999999},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.627,"5min":0.627,"15min":0.627},"last":0.71399999999999997}]}]},{"osd":4,"up_from":25,"seq":107374182421,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297804,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443252,"statfs":{"total":95990841344,"available":95685890048,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"min":{"1min":0.224,"5min":0.224,"15min":0.224},"max":{"1min":0.54000000000000004,"5min":0.54000000000000004,"15min":0.54000000000000004},"last":0.31}]},{"osd":1,"last update":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.65400000000000003,"5min":0.65400000000000003,"15min":0.65400000000000003},"last":0.50800000000000001},{"interface":"front","average":{"1min":0.505,"5min":0.505,"15min":0.505},"min":{"1min":0.34100000000000003,"5min":0.34100000000000003,"15min":0.34100000000000003},"max":{"1min":0.72599999999999998,"5min":0.72599999999999998,"15min":0.72599999999999998},"last":0.42899999999999999}]},{"osd":2,"last update":"Wed Sep 11 08:10:06 2024","interfaces":[{"interface":"back","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.248,"5min":0.248,"15min":0.248},"max":{"1min":0.621,"5min":0.621,"15min":0.621},"last":0.371},{"interface":"front","average":{"1min":0.39600000000000002,"5min":0.39600000000000002,"15min":0.39600000000000002},"min":{"1min":0.27200000000000002,"5min":0.27200000000000002,"15min":0.27200000000000002},"max":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"last":0.39900000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"min":{"1min":0.373,"5min":0.373,"15min":0.373},"max":{"1min":0.75800000000000001,"5min":0.75800000000000001,"15min":0.75800000000000001},"last":0.41399999999999998},{"interface":"front","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.439,"5min":0.439,"15min":0.439},"max":{"1min":0.78600000000000003,"5min":0.78600000000000003,"15min":0.78600000000000003},"last":0.45800000000000002}]},{"osd":5,"last update":"Wed Sep 11 08:10:18 2024","interfaces":[{"interface":"back","average":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"min":{"1min":0.39000000000000001,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.55800000000000005,"5min":0.55800000000000005,"15min":0.55800000000000005},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.48899999999999999}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.67500000000000004,"5min":0.67500000000000004,"15min":0.67500000000000004},"last":0.39100000000000001},{"interface":"front","average":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.59999999999999998,"5min":0.59999999999999998,"15min":0.59999999999999998},"last":0.53700000000000003}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.52900000000000003}]}]},{"osd":1,"up_from":21,"seq":90194313237,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297796,"kb_used_data":436,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443260,"statfs":{"total":95990841344,"available":95685898240,"internally_reserved":0,"allocated":446464,"data_stored":180626,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:59 2024","interfaces":[{"interface":"back","average":{"1min":0.55600000000000005,"5min":0.55600000000000005,"15min":0.55600000000000005},"min":{"1min":0.32000000000000001,"5min":0.32000000000000001,"15min":0.32000000000000001},"max":{"1min":0.80500000000000005,"5min":0.80500000000000005,"15min":0.80500000000000005},"last":0.40300000000000002},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.42799999999999999,"5min":0.42799999999999999,"15min":0.42799999999999999},"max":{"1min":0.71799999999999997,"5min":0.71799999999999997,"15min":0.71799999999999997},"last":0.53100000000000003}]},{"osd":2,"last update":"Wed Sep 11 08:09:59 2024","interfaces":[{"interface":"back","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"max":{"1min":0.80700000000000005,"5min":0.80700000000000005,"15min":0.80700000000000005},"last":0.36399999999999999},{"interface":"front","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.36499999999999999,"5min":0.36499999999999999,"15min":0.36499999999999999},"max":{"1min":0.626,"5min":0.626,"15min":0.626},"last":0.33100000000000002}]},{"osd":3,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.29399999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.41399999999999998},{"interface":"front","average":{"1min":0.45400000000000001,"5min":0.45400000000000001,"15min":0.45400000000000001},"min":{"1min":0.27000000000000002,"5min":0.27000000000000002,"15min":0.27000000000000002},"max":{"1min":0.67400000000000004,"5min":0.67400000000000004,"15min":0.67400000000000004},"last":0.54600000000000004}]},{"osd":4,"last update":"Wed Sep 11 08:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"min":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"max":{"1min":0.74099999999999999,"5min":0.74099999999999999,"15min":0.74099999999999999},"last":0.46300000000000002},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.82799999999999996,"5min":0.82799999999999996,"15min":0.82799999999999996},"last":0.47399999999999998}]},{"osd":5,"last update":"Wed Sep 11 08:10:20 2024","interfaces":[{"interface":"back","average":{"1min":0.49199999999999999,"5min":0.49199999999999999,"15min":0.49199999999999999},"min":{"1min":0.313,"5min":0.313,"15min":0.313},"max":{"1min":0.69599999999999995,"5min":0.69599999999999995,"15min":0.69599999999999995},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.308,"5min":0.308,"15min":0.308},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.51300000000000001}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.40699999999999997,"5min":0.40699999999999997,"15min":0.40699999999999997},"max":{"1min":0.754,"5min":0.754,"15min":0.754},"last":0.45100000000000001},{"interface":"front","average":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"min":{"1min":0.42099999999999999,"5min":0.42099999999999999,"15min":0.42099999999999999},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.58499999999999996}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.30499999999999999,"5min":0.30499999999999999,"15min":0.30499999999999999},"max":{"1min":0.76600000000000001,"5min":0.76600000000000001,"15min":0.76600000000000001},"last":0.57199999999999995}]}]},{"osd":2,"up_from":20,"seq":85899345942,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297800,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93443256,"statfs":{"total":95990841344,"available":95685894144,"internally_reserved":0,"allocated":450560,"data_stored":180891,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.40000000000000002,"5min":0.40000000000000002,"15min":0.40000000000000002},"min":{"1min":0.22900000000000001,"5min":0.22900000000000001,"15min":0.22900000000000001},"max":{"1min":0.57599999999999996,"5min":0.57599999999999996,"15min":0.57599999999999996},"last":0.42099999999999999},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":0.58799999999999997,"5min":0.58799999999999997,"15min":0.58799999999999997},"last":0.46600000000000003}]},{"osd":1,"last update":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":1.1000000000000001,"5min":1.1000000000000001,"15min":1.1000000000000001},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":10.987,"5min":10.987,"15min":10.987},"last":0.72799999999999998},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.34899999999999998,"5min":0.34899999999999998,"15min":0.34899999999999998},"max":{"1min":0.77400000000000002,"5min":0.77400000000000002,"15min":0.77400000000000002},"last":0.60699999999999998}]},{"osd":3,"last update":"Wed Sep 11 08:10:07 2024","interfaces":[{"interface":"back","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":0.71399999999999997,"5min":0.71399999999999997,"15min":0.71399999999999997},"last":0.65800000000000003},{"interface":"front","average":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.77100000000000002}]},{"osd":4,"last update":"Wed Sep 11 08:10:02 2024","interfaces":[{"interface":"back","average":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.63500000000000001,"5min":0.63500000000000001,"15min":0.63500000000000001},"last":0.56299999999999994},{"interface":"front","average":{"1min":0.432,"5min":0.432,"15min":0.432},"min":{"1min":0.26900000000000002,"5min":0.26900000000000002,"15min":0.26900000000000002},"max":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"last":0.54900000000000004}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":1.123,"5min":1.123,"15min":1.123},"min":{"1min":0.42199999999999999,"5min":0.42199999999999999,"15min":0.42199999999999999},"max":{"1min":11.007999999999999,"5min":11.007999999999999,"15min":11.007999999999999},"last":0.69799999999999995},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.79000000000000004,"5min":0.79000000000000004,"15min":0.79000000000000004},"last":0.753}]},{"osd":6,"last update":"Wed Sep 11 08:10:11 2024","interfaces":[{"interface":"back","average":{"1min":0.48399999999999999,"5min":0.48399999999999999,"15min":0.48399999999999999},"min":{"1min":0.33000000000000002,"5min":0.33000000000000002,"15min":0.33000000000000002},"max":{"1min":0.65200000000000002,"5min":0.65200000000000002,"15min":0.65200000000000002},"last":0.58299999999999996},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.33200000000000002,"5min":0.33200000000000002,"15min":0.33200000000000002},"max":{"1min":0.71599999999999997,"5min":0.71599999999999997,"15min":0.71599999999999997},"last":0.67600000000000005}]},{"osd":7,"last update":"Wed Sep 11 08:10:27 2024","interfaces":[{"interface":"back","average":{"1min":0.58399999999999996,"5min":0.58399999999999996,"15min":0.58399999999999996},"min":{"1min":0.40899999999999997,"5min":0.40899999999999997,"15min":0.40899999999999997},"max":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"last":0.73799999999999999},{"interface":"front","average":{"1min":0.60099999999999998,"5min":0.60099999999999998,"15min":0.60099999999999998},"min":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.71399999999999997}]}]},{"osd":0,"up_from":16,"seq":68719476759,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":298376,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":297342,"kb_avail":93442680,"statfs":{"total":95990841344,"available":95685304320,"internally_reserved":0,"allocated":1044480,"data_stored":771259,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1704,"internal_metadata":304478552},"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":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.47999999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"min":{"1min":0.26000000000000001,"5min":0.26000000000000001,"15min":0.26000000000000001},"max":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"last":0.52800000000000002},{"interface":"front","average":{"1min":0.45200000000000001,"5min":0.45200000000000001,"15min":0.45200000000000001},"min":{"1min":0.27900000000000003,"5min":0.27900000000000003,"15min":0.27900000000000003},"max":{"1min":0.64900000000000002,"5min":0.64900000000000002,"15min":0.64900000000000002},"last":0.40500000000000003}]},{"osd":2,"last update":"Wed Sep 11 08:09:58 2024","interfaces":[{"interface":"back","average":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"min":{"1min":0.214,"5min":0.214,"15min":0.214},"max":{"1min":0.58499999999999996,"5min":0.58499999999999996,"15min":0.58499999999999996},"last":0.34599999999999997},{"interface":"front","average":{"1min":0.35899999999999999,"5min":0.35899999999999999,"15min":0.35899999999999999},"min":{"1min":0.24099999999999999,"5min":0.24099999999999999,"15min":0.24099999999999999},"max":{"1min":0.56100000000000005,"5min":0.56100000000000005,"15min":0.56100000000000005},"last":0.35699999999999998}]},{"osd":3,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.55100000000000005,"5min":0.55100000000000005,"15min":0.55100000000000005},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.68100000000000005,"5min":0.68100000000000005,"15min":0.68100000000000005},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.52600000000000002,"5min":0.52600000000000002,"15min":0.52600000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.50800000000000001}]},{"osd":4,"last update":"Wed Sep 11 08:10:03 2024","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.26600000000000001,"5min":0.26600000000000001,"15min":0.26600000000000001},"max":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"last":0.47399999999999998},{"interface":"front","average":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"min":{"1min":0.28999999999999998,"5min":0.28999999999999998,"15min":0.28999999999999998},"max":{"1min":0.70699999999999996,"5min":0.70699999999999996,"15min":0.70699999999999996},"last":0.45000000000000001}]},{"osd":5,"last update":"Wed Sep 11 08:10:16 2024","interfaces":[{"interface":"back","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.44,"5min":0.44,"15min":0.44},"max":{"1min":0.76400000000000001,"5min":0.76400000000000001,"15min":0.76400000000000001},"last":0.65900000000000003},{"interface":"front","average":{"1min":0.60199999999999998,"5min":0.60199999999999998,"15min":0.60199999999999998},"min":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"max":{"1min":0.748,"5min":0.748,"15min":0.748},"last":0.61399999999999999}]},{"osd":6,"last update":"Wed Sep 11 08:10:09 2024","interfaces":[{"interface":"back","average":{"1min":0.45800000000000002,"5min":0.45800000000000002,"15min":0.45800000000000002},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.67100000000000004,"5min":0.67100000000000004,"15min":0.67100000000000004},"last":0.43099999999999999},{"interface":"front","average":{"1min":0.51100000000000001,"5min":0.51100000000000001,"15min":0.51100000000000001},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.81100000000000005,"5min":0.81100000000000005,"15min":0.81100000000000005},"last":0.55600000000000005}]},{"osd":7,"last update":"Wed Sep 11 08:10:26 2024","interfaces":[{"interface":"back","average":{"1min":0.61299999999999999,"5min":0.61299999999999999,"15min":0.61299999999999999},"min":{"1min":0.47199999999999998,"5min":0.47199999999999998,"15min":0.47199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.63400000000000001},{"interface":"front","average":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.58999999999999997}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-11T08:10:33.844 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-11T08:10:33.844 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-11T08:10:33.844 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-11T08:10:33.844 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph health --format=json 2024-09-11T08:10:34.102 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:34.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:34 smithi003 ceph-mon[25399]: from='client.14524 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:10:34.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:34 smithi183 ceph-mon[32791]: from='client.14524 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:10:35.665 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:35 smithi003 ceph-mon[25399]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:35.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:35 smithi183 ceph-mon[32791]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:35.853 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:10:35.853 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-11T08:10:36.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:36 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/153477137' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-11T08:10:36.625 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-11T08:10:36.625 INFO:tasks.cephadm:Setup complete, yielding 2024-09-11T08:10:36.626 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:10:36.637 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:10:36.637 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch status' 2024-09-11T08:10:36.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:36 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/153477137' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-09-11T08:10:36.900 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:37.642 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:37 smithi003 ceph-mon[25399]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:37.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:37 smithi183 ceph-mon[32791]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:38.590 INFO:teuthology.orchestra.run.smithi003.stdout:Backend: cephadm 2024-09-11T08:10:38.590 INFO:teuthology.orchestra.run.smithi003.stdout:Available: Yes 2024-09-11T08:10:38.590 INFO:teuthology.orchestra.run.smithi003.stdout:Paused: No 2024-09-11T08:10:39.142 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-11T08:10:39.397 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:39.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:39 smithi003 ceph-mon[25399]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:39.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:39 smithi003 ceph-mon[25399]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:39.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:39 smithi183 ceph-mon[32791]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:39.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:39 smithi183 ceph-mon[32791]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:41.117 INFO:teuthology.orchestra.run.smithi003.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:alertmanager.smithi003 smithi003 *:9093,9094 running (2m) 68s ago 3m 25.5M - 0.25.0 c8568f914cd2 4f2fb1efbe30 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:crash.smithi003 smithi003 running (4m) 68s ago 4m 6895k - 17.2.7-1623-gd0e6828a 4a918172a497 ec74b52f2760 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:crash.smithi183 smithi183 running (3m) 76s ago 3m 6903k - 17.2.7-1623-gd0e6828a 4a918172a497 c0764cc3c1c5 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:grafana.smithi003 smithi003 *:3000 running (2m) 68s ago 3m 80.0M - 9.4.7 954c08fa6188 7808fe5c161b 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:mgr.smithi003.abfhzj smithi003 *:9283,8765,8443 running (5m) 68s ago 5m 442M - 17.2.7-1623-gd0e6828a 4a918172a497 2e68e320eb0d 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:mgr.smithi183.nqrlko smithi183 *:8443,9283 running (3m) 76s ago 3m 401M - 17.2.7-1623-gd0e6828a 4a918172a497 d15f295b768b 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:mon.smithi003 smithi003 running (5m) 68s ago 5m 45.9M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 fe0636f33f2c 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:mon.smithi183 smithi183 running (3m) 76s ago 3m 41.4M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 b1f368ab0b1a 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter.smithi003 smithi003 *:9100 running (4m) 68s ago 4m 14.3M - 1.5.0 0da6a335fe13 90b09c21a1ac 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter.smithi183 smithi183 *:9100 running (3m) 76s ago 3m 14.7M - 1.5.0 0da6a335fe13 86e64cf96b8a 2024-09-11T08:10:41.118 INFO:teuthology.orchestra.run.smithi003.stdout:osd.0 smithi183 running (115s) 76s ago 114s 37.1M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 b93f2ba36497 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.1 smithi003 running (109s) 68s ago 109s 38.2M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 775f774129eb 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.2 smithi183 running (110s) 76s ago 109s 39.5M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 0ce564f87848 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.3 smithi003 running (101s) 68s ago 100s 33.0M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 dbcac29ada3f 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.4 smithi183 running (105s) 76s ago 104s 32.0M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 da7fc237cdfb 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.5 smithi003 running (92s) 68s ago 92s 28.3M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 f708ce2e1fc3 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.6 smithi183 running (100s) 76s ago 99s 28.3M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 1ddb83bd993b 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:osd.7 smithi003 running (83s) 68s ago 82s 27.4M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 06c7d8abf4d9 2024-09-11T08:10:41.119 INFO:teuthology.orchestra.run.smithi003.stdout:prometheus.smithi003 smithi003 *:9095 running (2m) 68s ago 3m 38.3M - 2.43.0 a07b618ecd1d 1803920a22b3 2024-09-11T08:10:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:41 smithi003 ceph-mon[25399]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:41.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:41 smithi183 ceph-mon[32791]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:41.892 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-11T08:10:42.151 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:42.509 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:42 smithi003 ceph-mon[25399]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:42.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:42 smithi183 ceph-mon[32791]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:43.643 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:43 smithi003 ceph-mon[25399]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:43.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:43 smithi183 ceph-mon[32791]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:43.782 INFO:teuthology.orchestra.run.smithi003.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-11T08:10:43.782 INFO:teuthology.orchestra.run.smithi003.stdout:alertmanager ?:9093,9094 1/1 71s ago 4m count:1 2024-09-11T08:10:43.782 INFO:teuthology.orchestra.run.smithi003.stdout:crash 2/2 78s ago 4m * 2024-09-11T08:10:43.782 INFO:teuthology.orchestra.run.smithi003.stdout:grafana ?:3000 1/1 71s ago 4m count:1 2024-09-11T08:10:43.782 INFO:teuthology.orchestra.run.smithi003.stdout:mgr 2/2 78s ago 4m count:2 2024-09-11T08:10:43.783 INFO:teuthology.orchestra.run.smithi003.stdout:mon 2/2 78s ago 3m smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183;count:2 2024-09-11T08:10:43.783 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter ?:9100 2/2 78s ago 4m * 2024-09-11T08:10:43.783 INFO:teuthology.orchestra.run.smithi003.stdout:osd.all-available-devices 8 78s ago 2m * 2024-09-11T08:10:43.783 INFO:teuthology.orchestra.run.smithi003.stdout:prometheus ?:9095 1/1 71s ago 4m count:1 2024-09-11T08:10:44.362 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-11T08:10:44.624 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:44.638 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:44 smithi003 ceph-mon[25399]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:44.639 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:44.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:44 smithi183 ceph-mon[32791]: from='client.14540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:44.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:45.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:45 smithi003 ceph-mon[25399]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:45.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:45 smithi183 ceph-mon[32791]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:46.324 INFO:teuthology.orchestra.run.smithi003.stdout:HOST ADDR LABELS STATUS 2024-09-11T08:10:46.324 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 172.21.15.3 2024-09-11T08:10:46.325 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 172.21.15.183 2024-09-11T08:10:46.325 INFO:teuthology.orchestra.run.smithi003.stdout:2 hosts in cluster 2024-09-11T08:10:47.229 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-11T08:10:47.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:47 smithi003 ceph-mon[25399]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:47.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:47 smithi003 ceph-mon[25399]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:47.491 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:47.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:47 smithi183 ceph-mon[32791]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:47.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:47 smithi183 ceph-mon[32791]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:49.311 INFO:teuthology.orchestra.run.smithi003.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-11T08:10:49.311 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5330009Z400BGN 372G No 71s ago Has a FileSystem, LVM detected 2024-09-11T08:10:49.311 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme1n1 ssd Linux_a4dc976c151ecfbf8889 89.4G No 71s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme2n1 ssd Linux_b7bb6e906eba02105946 89.4G No 71s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme3n1 ssd Linux_302f31195cae6746d703 89.4G No 71s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme4n1 ssd Linux_d808658ddcdfcc494ff5 89.4G No 71s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500QJ400BGN 372G No 80s ago Has a FileSystem, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme1n1 ssd Linux_4e16a1a0884b4ccf92b7 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme2n1 ssd Linux_3c92070c9200bec3337e 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme3n1 ssd Linux_3409f6be9dc4aeebdcb9 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.312 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme4n1 ssd Linux_ee7a7c40f3c9e38130b5 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:49.609 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:49 smithi003 ceph-mon[25399]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:49.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:49 smithi183 ceph-mon[32791]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:50.018 INFO:teuthology.run_tasks:Running task vip... 2024-09-11T08:10:50.028 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-11T08:10:50.028 INFO:tasks.vip:peername 172.21.15.3 2024-09-11T08:10:50.031 INFO:tasks.vip:172.21.15.3 in 172.21.0.0/20, pos 3842 2024-09-11T08:10:50.035 INFO:tasks.vip:smithi003.front.sepia.ceph.com static 10.0.15.3, vnet 10.0.0.0/16 2024-09-11T08:10:50.035 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-09-11T08:10:50.036 DEBUG:teuthology.orchestra.run.smithi003:> sudo ip route ls 2024-09-11T08:10:50.067 INFO:teuthology.orchestra.run.smithi003.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.3 metric 100 2024-09-11T08:10:50.067 INFO:teuthology.orchestra.run.smithi003.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.3 metric 100 2024-09-11T08:10:50.069 INFO:tasks.vip:Configuring 10.0.15.3 on smithi003.front.sepia.ceph.com iface ens1f0... 2024-09-11T08:10:50.069 DEBUG:teuthology.orchestra.run.smithi003:> sudo ip addr add 10.0.15.3/16 dev ens1f0 2024-09-11T08:10:50.139 INFO:tasks.vip:peername 172.21.15.183 2024-09-11T08:10:50.142 INFO:tasks.vip:172.21.15.183 in 172.21.0.0/20, pos 4022 2024-09-11T08:10:50.145 INFO:tasks.vip:smithi183.front.sepia.ceph.com static 10.0.15.183, vnet 10.0.0.0/16 2024-09-11T08:10:50.146 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip route ls 2024-09-11T08:10:50.180 INFO:teuthology.orchestra.run.smithi183.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.183 metric 100 2024-09-11T08:10:50.181 INFO:teuthology.orchestra.run.smithi183.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.183 metric 100 2024-09-11T08:10:50.182 INFO:tasks.vip:Configuring 10.0.15.183 on smithi183.front.sepia.ceph.com iface enp3s0f1... 2024-09-11T08:10:50.182 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr add 10.0.15.183/16 dev enp3s0f1 2024-09-11T08:10:50.253 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:10:50.262 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:10:50.262 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-11T08:10:50.550 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:50.674 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:50 smithi003 ceph-mon[25399]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:50.674 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:50 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:10:50.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:50 smithi183 ceph-mon[32791]: from='client.14548 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:50.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:50 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:10:51.699 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:51 smithi003 ceph-mon[25399]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:51.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:51 smithi183 ceph-mon[32791]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5330009Z400BGN 372G No 74s ago Has a FileSystem, LVM detected 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme1n1 ssd Linux_a4dc976c151ecfbf8889 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme2n1 ssd Linux_b7bb6e906eba02105946 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme3n1 ssd Linux_302f31195cae6746d703 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.850 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme4n1 ssd Linux_d808658ddcdfcc494ff5 89.4G No 74s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.851 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500QJ400BGN 372G No 83s ago Has a FileSystem, LVM detected 2024-09-11T08:10:52.851 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme1n1 ssd Linux_4e16a1a0884b4ccf92b7 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.851 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme2n1 ssd Linux_3c92070c9200bec3337e 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.851 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme3n1 ssd Linux_3409f6be9dc4aeebdcb9 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:52.851 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme4n1 ssd Linux_ee7a7c40f3c9e38130b5 89.4G No 83s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:10:53.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:53.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:53 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:53.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:53 smithi003 ceph-mon[25399]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:53.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:53.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:53 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:53.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:53 smithi183 ceph-mon[32791]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:53.520 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-11T08:10:53.531 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:10:53.531 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-11T08:10:53.561 INFO:teuthology.orchestra.run.smithi003.stderr:+ systemctl stop nfs-server 2024-09-11T08:10:53.570 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi183.front.sepia.ceph.com 2024-09-11T08:10:53.570 DEBUG:teuthology.orchestra.run.smithi183:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-11T08:10:53.600 INFO:teuthology.orchestra.run.smithi183.stderr:+ systemctl stop nfs-server 2024-09-11T08:10:53.608 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:10:53.617 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:10:53.617 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-11T08:10:54.371 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:54.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:54 smithi003 ceph-mon[25399]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:54.481 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:54 smithi183 ceph-mon[32791]: from='client.14552 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:55.401 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:55 smithi183 ceph-mon[32791]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:55.437 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:55 smithi003 ceph-mon[25399]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:57.418 INFO:teuthology.orchestra.run.smithi003.stdout:Scheduled rgw.foorgw update... 2024-09-11T08:10:57.418 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:57 smithi003 ceph-mon[25399]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:57.742 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:57 smithi183 ceph-mon[32791]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:58.692 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:58 smithi003 ceph-mon[25399]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:58.692 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:58 smithi003 ceph-mon[25399]: Saving service rgw.foorgw spec with placement count:2 2024-09-11T08:10:58.693 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:58 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:58.718 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.3/16' 2024-09-11T08:10:58.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:58 smithi183 ceph-mon[32791]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:10:58.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:58 smithi183 ceph-mon[32791]: Saving service rgw.foorgw spec with placement count:2 2024-09-11T08:10:58.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:58 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:58.991 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:10:59.717 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:59 smithi003 ceph-mon[25399]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:59.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:59.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:59.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:10:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:10:59.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:59 smithi183 ceph-mon[32791]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:10:59.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:59.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:10:59.732 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:10:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:00.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:00.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:00 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:00.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:00.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:00 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:01.871 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:01 smithi003 ceph-mon[25399]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:01.871 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-09-11T08:11:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:01 smithi183 ceph-mon[32791]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-09-11T08:11:02.714 INFO:teuthology.orchestra.run.smithi003.stdout:NFS Cluster Created Successfully 2024-09-11T08:11:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:02 smithi003 ceph-mon[25399]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.3/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:11:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-09-11T08:11:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:02 smithi003 ceph-mon[25399]: osdmap e45: 8 total, 8 up, 8 in 2024-09-11T08:11:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:02 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-11T08:11:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:02 smithi183 ceph-mon[32791]: from='client.14560 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.3/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:11:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-09-11T08:11:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:02 smithi183 ceph-mon[32791]: osdmap e45: 8 total, 8 up, 8 in 2024-09-11T08:11:02.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:02 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-09-11T08:11:03.439 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-11T08:11:03.449 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:11:03.450 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-11T08:11:03.480 INFO:teuthology.orchestra.run.smithi003.stderr:+ dnf install -y python3-boto3 2024-09-11T08:11:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: pgmap v147: 33 pgs: 7 creating+peering, 25 unknown, 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-11T08:11:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: osdmap e46: 8 total, 8 up, 8 in 2024-09-11T08:11:03.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: Saving service nfs.foo spec with placement count:1 2024-09-11T08:11:03.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:03.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-11T08:11:03.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:03 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: pgmap v147: 33 pgs: 7 creating+peering, 25 unknown, 1 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-11T08:11:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: osdmap e46: 8 total, 8 up, 8 in 2024-09-11T08:11:03.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: Saving service nfs.foo spec with placement count:1 2024-09-11T08:11:03.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:03.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-11T08:11:03.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:03 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.045 INFO:teuthology.orchestra.run.smithi003.stdout:Last metadata expiration check: 0:09:15 ago on Wed 11 Sep 2024 08:01:48 AM UTC. 2024-09-11T08:11:04.196 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-09-11T08:11:04.197 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: Package Arch Version Repository Size 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout:Installing: 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout:Installing dependencies: 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-09-11T08:11:04.198 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-09-11T08:11:04.199 INFO:teuthology.orchestra.run.smithi003.stdout:Install 5 Packages 2024-09-11T08:11:04.199 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:04.207 INFO:teuthology.orchestra.run.smithi003.stdout:Total download size: 6.6 M 2024-09-11T08:11:04.207 INFO:teuthology.orchestra.run.smithi003.stdout:Installed size: 86 M 2024-09-11T08:11:04.207 INFO:teuthology.orchestra.run.smithi003.stdout:Downloading Packages: 2024-09-11T08:11:04.526 INFO:teuthology.orchestra.run.smithi003.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 2.3 MB/s | 164 kB 00:00 2024-09-11T08:11:04.552 INFO:teuthology.orchestra.run.smithi003.stdout:(2/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 525 kB/s | 50 kB 00:00 2024-09-11T08:11:04.602 INFO:teuthology.orchestra.run.smithi003.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 2.2 MB/s | 113 kB 00:00 2024-09-11T08:11:04.802 INFO:teuthology.orchestra.run.smithi003.stdout:(4/5): python3-botocore-1.31.62-2.el9.noarch.rp 22 MB/s | 6.1 MB 00:00 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: osdmap e47: 8 total, 8 up, 8 in 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:11:04.943 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:11:04.944 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:04 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:04.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: osdmap e47: 8 total, 8 up, 8 in 2024-09-11T08:11:04.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:04.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:11:04.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:04.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:11:04.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-09-11T08:11:04.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:04 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:05.019 INFO:teuthology.orchestra.run.smithi003.stdout:(5/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 381 kB/s | 215 kB 00:00 2024-09-11T08:11:05.021 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-09-11T08:11:05.021 INFO:teuthology.orchestra.run.smithi003.stdout:Total 8.2 MB/s | 6.6 MB 00:00 2024-09-11T08:11:05.046 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction check 2024-09-11T08:11:05.057 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction check succeeded. 2024-09-11T08:11:05.057 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction test 2024-09-11T08:11:05.161 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction test succeeded. 2024-09-11T08:11:05.161 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction 2024-09-11T08:11:05.432 INFO:teuthology.orchestra.run.smithi003.stdout: Preparing : 1/1 2024-09-11T08:11:05.561 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-11T08:11:05.749 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:05 smithi183 ceph-mon[32791]: pgmap v150: 33 pgs: 7 creating+peering, 14 unknown, 12 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:05.749 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:05 smithi183 ceph-mon[32791]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:05.750 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:05 smithi183 ceph-mon[32791]: Cluster is now healthy 2024-09-11T08:11:05.750 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:05 smithi183 ceph-mon[32791]: mgrmap e20: smithi003.abfhzj(active, since 3m), standbys: smithi183.nqrlko 2024-09-11T08:11:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:05 smithi003 ceph-mon[25399]: pgmap v150: 33 pgs: 7 creating+peering, 14 unknown, 12 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:05 smithi003 ceph-mon[25399]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:05 smithi003 ceph-mon[25399]: Cluster is now healthy 2024-09-11T08:11:05.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:05 smithi003 ceph-mon[25399]: mgrmap e20: smithi003.abfhzj(active, since 3m), standbys: smithi183.nqrlko 2024-09-11T08:11:06.938 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-11T08:11:07.075 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-11T08:11:07.162 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-11T08:11:07.234 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-11T08:11:07.949 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:07 smithi183 ceph-mon[32791]: pgmap v151: 33 pgs: 7 creating+peering, 5 unknown, 21 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:07 smithi003 ceph-mon[25399]: pgmap v151: 33 pgs: 7 creating+peering, 5 unknown, 21 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:08.447 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-11T08:11:08.448 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-11T08:11:08.448 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-11T08:11:08.448 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-11T08:11:08.448 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout:Installed: 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:08.769 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-09-11T08:11:08.985 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-09-11T08:11:09.052 INFO:teuthology.orchestra.run.smithi003.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-11T08:11:09.283 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring fsid 37f299f8-7014-11ef-bcea-c7b262605968 2024-09-11T08:11:09.345 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:09.463 INFO:teuthology.orchestra.run.smithi003.stderr:Using ceph image with id '4a918172a497' and tag 'd0e6828a2016d48cf25ad84064e50742bb1c39b9' created on 2024-09-10 22:45:32 +0000 UTC 2024-09-11T08:11:09.463 INFO:teuthology.orchestra.run.smithi003.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40 2024-09-11T08:11:09.871 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:09 smithi003 ceph-mon[25399]: pgmap v152: 33 pgs: 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:09.946 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:09 smithi183 ceph-mon[32791]: pgmap v152: 33 pgs: 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:11.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:11 smithi003 ceph-mon[25399]: pgmap v153: 33 pgs: 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:11.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:11 smithi183 ceph-mon[32791]: pgmap v153: 33 pgs: 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:11:12.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: osdmap e48: 8 total, 8 up, 8 in 2024-09-11T08:11:12.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-11T08:11:12.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.wnezbj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:12.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.wnezbj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:12.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:12 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: osdmap e48: 8 total, 8 up, 8 in 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.wnezbj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:12.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.wnezbj", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:12.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:12.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:12 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:13.963 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:13 smithi003 ceph-mon[25399]: pgmap v155: 65 pgs: 5 creating+peering, 27 unknown, 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:13.963 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:13 smithi003 ceph-mon[25399]: Deploying daemon rgw.foorgw.smithi183.wnezbj on smithi183 2024-09-11T08:11:13.963 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:13 smithi003 ceph-mon[25399]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:13.963 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:13 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-11T08:11:13.963 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:13 smithi003 ceph-mon[25399]: osdmap e49: 8 total, 8 up, 8 in 2024-09-11T08:11:13.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:13 smithi183 ceph-mon[32791]: pgmap v155: 65 pgs: 5 creating+peering, 27 unknown, 33 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:11:13.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:13 smithi183 ceph-mon[32791]: Deploying daemon rgw.foorgw.smithi183.wnezbj on smithi183 2024-09-11T08:11:13.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:13 smithi183 ceph-mon[32791]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:13.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:13 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-11T08:11:13.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:13 smithi183 ceph-mon[32791]: osdmap e49: 8 total, 8 up, 8 in 2024-09-11T08:11:14.806 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:14 smithi183 ceph-mon[32791]: osdmap e50: 8 total, 8 up, 8 in 2024-09-11T08:11:14.806 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:14 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-11T08:11:14.806 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:14.806 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:15.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:14 smithi003 ceph-mon[25399]: osdmap e50: 8 total, 8 up, 8 in 2024-09-11T08:11:15.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:14 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-09-11T08:11:15.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:15.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:15.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: pgmap v158: 97 pgs: 5 creating+peering, 44 unknown, 48 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: osdmap e51: 8 total, 8 up, 8 in 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi003.gosjan", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi003.gosjan", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:16.053 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: pgmap v158: 97 pgs: 5 creating+peering, 44 unknown, 48 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:16.053 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: osdmap e51: 8 total, 8 up, 8 in 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi003.gosjan", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi003.gosjan", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:16.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:17.074 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:16 smithi003 ceph-mon[25399]: Deploying daemon rgw.foorgw.smithi003.gosjan on smithi003 2024-09-11T08:11:17.074 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:16 smithi003 ceph-mon[25399]: osdmap e52: 8 total, 8 up, 8 in 2024-09-11T08:11:17.074 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:16 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:17.074 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:16 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/3196948619' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:17.074 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:16 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:16 smithi183 ceph-mon[32791]: Deploying daemon rgw.foorgw.smithi003.gosjan on smithi003 2024-09-11T08:11:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:16 smithi183 ceph-mon[32791]: osdmap e52: 8 total, 8 up, 8 in 2024-09-11T08:11:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:16 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:16 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/3196948619' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:17.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:16 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-09-11T08:11:18.031 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:17 smithi003 ceph-mon[25399]: pgmap v161: 129 pgs: 5 creating+peering, 63 unknown, 61 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 767 B/s wr, 3 op/s 2024-09-11T08:11:18.031 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:17 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-11T08:11:18.031 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:17 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-11T08:11:18.031 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:17 smithi003 ceph-mon[25399]: osdmap e53: 8 total, 8 up, 8 in 2024-09-11T08:11:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:17 smithi183 ceph-mon[32791]: pgmap v161: 129 pgs: 5 creating+peering, 63 unknown, 61 active+clean; 577 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 767 B/s wr, 3 op/s 2024-09-11T08:11:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:17 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/2901430347' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-11T08:11:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:17 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-11T08:11:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:17 smithi183 ceph-mon[32791]: osdmap e53: 8 total, 8 up, 8 in 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: osdmap e54: 8 total, 8 up, 8 in 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/704257080' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/131214310' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:19.016 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-11T08:11:19.017 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-11T08:11:19.017 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:19.017 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:19.017 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:18 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:19.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: osdmap e54: 8 total, 8 up, 8 in 2024-09-11T08:11:19.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/704257080' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/131214310' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-11T08:11:19.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi003.evpkpe-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-11T08:11:19.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:18 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:19.930 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: pgmap v164: 161 pgs: 18 creating+peering, 46 unknown, 97 active+clean; 578 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.5 KiB/s rd, 1.2 KiB/s wr, 7 op/s 2024-09-11T08:11:19.930 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Saving service rgw.foorgw spec with placement count:2 2024-09-11T08:11:19.930 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Creating key for client.nfs.foo.0.0.smithi003.evpkpe 2024-09-11T08:11:19.930 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-11T08:11:19.930 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Rados config object exists: conf-nfs.foo 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Creating key for client.nfs.foo.0.0.smithi003.evpkpe-rgw 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Bind address in nfs.foo.0.0.smithi003.evpkpe's ganesha conf is defaulting to empty 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: Deploying daemon nfs.foo.0.0.smithi003.evpkpe on smithi003 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: osdmap e55: 8 total, 8 up, 8 in 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? 172.21.15.183:0/704257080' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/131214310' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:19.931 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:19 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:20.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: pgmap v164: 161 pgs: 18 creating+peering, 46 unknown, 97 active+clean; 578 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.5 KiB/s rd, 1.2 KiB/s wr, 7 op/s 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Saving service rgw.foorgw spec with placement count:2 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Creating key for client.nfs.foo.0.0.smithi003.evpkpe 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Rados config object exists: conf-nfs.foo 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Creating key for client.nfs.foo.0.0.smithi003.evpkpe-rgw 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Bind address in nfs.foo.0.0.smithi003.evpkpe's ganesha conf is defaulting to empty 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: Deploying daemon nfs.foo.0.0.smithi003.evpkpe on smithi003 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-11T08:11:20.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: osdmap e55: 8 total, 8 up, 8 in 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? 172.21.15.183:0/704257080' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/131214310' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:20.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:19 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:20.693 INFO:teuthology.run_tasks:Running task python... 2024-09-11T08:11:20.722 INFO:tasks.python:Running python on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:11:20.722 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-09-11T08:11:20.723 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-11T08:11:20.927 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:20 smithi003 ceph-mon[25399]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:20.928 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:20 smithi003 ceph-mon[25399]: from='client.? ' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:20.928 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:20 smithi003 ceph-mon[25399]: osdmap e56: 8 total, 8 up, 8 in 2024-09-11T08:11:21.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:20 smithi183 ceph-mon[32791]: from='client.? ' entity='client.rgw.foorgw.smithi183.wnezbj' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:21.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:20 smithi183 ceph-mon[32791]: from='client.? ' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:21.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:20 smithi183 ceph-mon[32791]: osdmap e56: 8 total, 8 up, 8 in 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: pgmap v167: 161 pgs: 23 creating+peering, 22 unknown, 116 active+clean; 579 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 3.5 KiB/s wr, 104 op/s 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: Cluster is now healthy 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:21.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:21 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:22.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: pgmap v167: 161 pgs: 23 creating+peering, 22 unknown, 116 active+clean; 579 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 43 KiB/s rd, 3.5 KiB/s wr, 104 op/s 2024-09-11T08:11:22.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:22.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: Cluster is now healthy 2024-09-11T08:11:22.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:22.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:22.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:22.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:22.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:21 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:23.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:22 smithi003 ceph-mon[25399]: Filtered out host smithi183: Host has no interface available for VIP: 10.0.31.3/16 2024-09-11T08:11:23.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:22 smithi003 ceph-mon[25399]: Deploying daemon haproxy.nfs.foo.smithi003.mlbkcd on smithi003 2024-09-11T08:11:23.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:22 smithi003 ceph-mon[25399]: osdmap e57: 8 total, 8 up, 8 in 2024-09-11T08:11:23.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:22 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-11T08:11:23.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:22 smithi183 ceph-mon[32791]: Filtered out host smithi183: Host has no interface available for VIP: 10.0.31.3/16 2024-09-11T08:11:23.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:22 smithi183 ceph-mon[32791]: Deploying daemon haproxy.nfs.foo.smithi003.mlbkcd on smithi003 2024-09-11T08:11:23.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:22 smithi183 ceph-mon[32791]: osdmap e57: 8 total, 8 up, 8 in 2024-09-11T08:11:23.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:22 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: pgmap v169: 193 pgs: 23 creating+peering, 26 unknown, 144 active+clean; 581 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 140 KiB/s rd, 7.7 KiB/s wr, 288 op/s 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: osdmap e58: 8 total, 8 up, 8 in 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:24.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:23 smithi003 ceph-mon[25399]: osdmap e59: 8 total, 8 up, 8 in 2024-09-11T08:11:24.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: pgmap v169: 193 pgs: 23 creating+peering, 26 unknown, 144 active+clean; 581 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 140 KiB/s rd, 7.7 KiB/s wr, 288 op/s 2024-09-11T08:11:24.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-11T08:11:24.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-11T08:11:24.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: osdmap e58: 8 total, 8 up, 8 in 2024-09-11T08:11:24.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-09-11T08:11:24.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/1016944159' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-11T08:11:24.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:23 smithi183 ceph-mon[32791]: osdmap e59: 8 total, 8 up, 8 in 2024-09-11T08:11:25.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: pgmap v172: 193 pgs: 6 creating+peering, 8 unknown, 179 active+clean; 582 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 205 KiB/s rd, 6.8 KiB/s wr, 377 op/s 2024-09-11T08:11:25.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:25.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:25.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: Cluster is now healthy 2024-09-11T08:11:25.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: osdmap e60: 8 total, 8 up, 8 in 2024-09-11T08:11:25.602 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:25 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3223261730' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: pgmap v172: 193 pgs: 6 creating+peering, 8 unknown, 179 active+clean; 582 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 205 KiB/s rd, 6.8 KiB/s wr, 377 op/s 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: Cluster is now healthy 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: osdmap e60: 8 total, 8 up, 8 in 2024-09-11T08:11:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:25 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3223261730' entity='client.rgw.foorgw.smithi003.gosjan' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-09-11T08:11:25.868 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:11:25.878 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:11:25.878 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-11T08:11:26.164 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:26.909 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:26 smithi003 ceph-mon[25399]: from='client.? 172.21.15.3:0/3223261730' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-11T08:11:26.910 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:26 smithi003 ceph-mon[25399]: osdmap e61: 8 total, 8 up, 8 in 2024-09-11T08:11:26.910 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:26 smithi003 ceph-mon[25399]: pgmap v175: 225 pgs: 14 creating+peering, 26 unknown, 185 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 KiB/s rd, 2.5 KiB/s wr, 202 op/s 2024-09-11T08:11:27.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:26 smithi183 ceph-mon[32791]: from='client.? 172.21.15.3:0/3223261730' entity='client.rgw.foorgw.smithi003.gosjan' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-11T08:11:27.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:26 smithi183 ceph-mon[32791]: osdmap e61: 8 total, 8 up, 8 in 2024-09-11T08:11:27.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:26 smithi183 ceph-mon[32791]: pgmap v175: 225 pgs: 14 creating+peering, 26 unknown, 185 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 114 KiB/s rd, 2.5 KiB/s wr, 202 op/s 2024-09-11T08:11:28.047 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:27 smithi003 ceph-mon[25399]: osdmap e62: 8 total, 8 up, 8 in 2024-09-11T08:11:28.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:27 smithi183 ceph-mon[32791]: osdmap e62: 8 total, 8 up, 8 in 2024-09-11T08:11:28.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:28 smithi003 ceph-mon[25399]: pgmap v177: 225 pgs: 8 creating+peering, 12 unknown, 205 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.1 KiB/s wr, 5 op/s 2024-09-11T08:11:29.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:28 smithi183 ceph-mon[32791]: pgmap v177: 225 pgs: 8 creating+peering, 12 unknown, 205 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.1 KiB/s wr, 5 op/s 2024-09-11T08:11:29.290 INFO:teuthology.orchestra.run.smithi003.stdout:{ 2024-09-11T08:11:29.290 INFO:teuthology.orchestra.run.smithi003.stdout: "bind": "/foobucket", 2024-09-11T08:11:29.291 INFO:teuthology.orchestra.run.smithi003.stdout: "path": "foobucket", 2024-09-11T08:11:29.291 INFO:teuthology.orchestra.run.smithi003.stdout: "cluster": "foo", 2024-09-11T08:11:29.291 INFO:teuthology.orchestra.run.smithi003.stdout: "mode": "RW", 2024-09-11T08:11:29.291 INFO:teuthology.orchestra.run.smithi003.stdout: "squash": "none" 2024-09-11T08:11:29.291 INFO:teuthology.orchestra.run.smithi003.stdout:} 2024-09-11T08:11:30.055 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-11T08:11:30.318 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-11T08:11:30.319 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:30.621 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:30.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:30 smithi003 ceph-mon[25399]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:11:30.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:30 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:30.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:30 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:30.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:30 smithi183 ceph-mon[32791]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:11:30.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:30 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:30.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:30 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: pgmap v178: 225 pgs: 8 creating+peering, 217 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.2 KiB/s wr, 6 op/s 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:11:31.884 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:31 smithi003 ceph-mon[25399]: Deploying daemon keepalived.nfs.foo.smithi003.nlqqtd on smithi003 2024-09-11T08:11:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: pgmap v178: 225 pgs: 8 creating+peering, 217 active+clean; 583 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1.2 KiB/s wr, 6 op/s 2024-09-11T08:11:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:11:31.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:31 smithi183 ceph-mon[32791]: Deploying daemon keepalived.nfs.foo.smithi003.nlqqtd on smithi003 2024-09-11T08:11:32.387 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:32.388 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:10:58.922139Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:10:52.126275Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:10:58.922212Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:30.619914Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:10:52.126545Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:10:52.126628Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:21.553390Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:10:52.126448Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:10:52.126703Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:10:58.922275Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-11T08:11:33.198 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-11T08:11:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:33 smithi003 ceph-mon[25399]: pgmap v179: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.1 KiB/s rd, 1.2 KiB/s wr, 14 op/s 2024-09-11T08:11:33.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:33 smithi003 ceph-mon[25399]: from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:33.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:33 smithi183 ceph-mon[32791]: pgmap v179: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.1 KiB/s rd, 1.2 KiB/s wr, 14 op/s 2024-09-11T08:11:33.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:33 smithi183 ceph-mon[32791]: from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:34.199 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:35.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:35 smithi003 ceph-mon[25399]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 963 B/s wr, 25 op/s 2024-09-11T08:11:35.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:35 smithi183 ceph-mon[32791]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 963 B/s wr, 25 op/s 2024-09-11T08:11:36.105 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:37.807 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:37 smithi003 ceph-mon[25399]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 14 KiB/s rd, 818 B/s wr, 21 op/s 2024-09-11T08:11:37.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:37 smithi183 ceph-mon[32791]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 14 KiB/s rd, 818 B/s wr, 21 op/s 2024-09-11T08:11:39.015 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:39.016 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:10:58.922139Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:10:52.126275Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:10:58.922212Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:30.619914Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:10:52.126545Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:10:52.126628Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:21.553390Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:10:52.126448Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:10:52.126703Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:10:58.922275Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-11T08:11:39.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:39 smithi003 ceph-mon[25399]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 712 B/s wr, 18 op/s 2024-09-11T08:11:39.773 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:39 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:39.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:39 smithi183 ceph-mon[32791]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 712 B/s wr, 18 op/s 2024-09-11T08:11:39.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:39 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:40.419 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-11T08:11:40.643 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:40 smithi003 ceph-mon[25399]: from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:40.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:40 smithi183 ceph-mon[32791]: from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:41.420 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 426 B/s wr, 16 op/s 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:41 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 426 B/s wr, 16 op/s 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:41.923 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:41 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:11:42.138 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:43.799 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:43 smithi003 ceph-mon[25399]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 255 B/s wr, 14 op/s 2024-09-11T08:11:43.800 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.800 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.800 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.800 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:43 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.921 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:43 smithi183 ceph-mon[32791]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 255 B/s wr, 14 op/s 2024-09-11T08:11:43.921 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.921 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.921 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:43.921 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:43 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:44.698 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:44.698 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:10:58.922139Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:10:58.921992Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:10:58.922212Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:41.059016Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:10:58.921917Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:10:58.921773Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:21.553390Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:10:58.922074Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:10:58.922351Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:10:58.922275Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-11T08:11:44.698 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:44.698 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:44.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:44.885 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:45.584 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-11T08:11:45.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:45 smithi003 ceph-mon[25399]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.8 KiB/s rd, 85 B/s wr, 9 op/s 2024-09-11T08:11:45.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:45 smithi003 ceph-mon[25399]: from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:45 smithi183 ceph-mon[32791]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.8 KiB/s rd, 85 B/s wr, 9 op/s 2024-09-11T08:11:45.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:45 smithi183 ceph-mon[32791]: from='client.14658 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:46.585 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:47 smithi003 ceph-mon[25399]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:11:47.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:47.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:47 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:47 smithi183 ceph-mon[32791]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:11:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:47 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:49.332 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:49.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:49 smithi003 ceph-mon[25399]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-11T08:11:49.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:49 smithi183 ceph-mon[32791]: pgmap v187: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-11T08:11:51.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:51 smithi003 ceph-mon[25399]: pgmap v188: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:11:51.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:51 smithi183 ceph-mon[32791]: pgmap v188: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:11:52.045 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:52.045 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:10:58.922139Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:10:58.921992Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:10:58.922212Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:41.059016Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:10:58.921917Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:10:58.921773Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:21.553390Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:10:58.922074Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:10:58.922351Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:10:58.922275Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-11T08:11:53.030 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-11T08:11:53.967 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:53 smithi003 ceph-mon[25399]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:53.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:53 smithi003 ceph-mon[25399]: pgmap v189: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:53.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:53 smithi183 ceph-mon[32791]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:53.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:53 smithi183 ceph-mon[32791]: pgmap v189: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:54.031 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:54.687 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: pgmap v190: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: Checking dashboard <-> RGW credentials 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:11:55.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: pgmap v190: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-11T08:11:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:11:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: Checking dashboard <-> RGW credentials 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:11:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:11:56.763 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:56.763 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:11:54.691123Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:11:43.051261Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:11:54.691187Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:41.059016Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "last_refresh": "2024-09-11T08:11:54.691696Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:11:43.051478Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:11:43.051563Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:55.038557Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "last_refresh": "2024-09-11T08:11:54.691634Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:11:43.051406Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:11:43.051640Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:11:54.691248Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-11T08:11:56.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:56 smithi003 ceph-mon[25399]: Deploying daemon haproxy.nfs.foo.smithi183.svnlgu on smithi183 2024-09-11T08:11:56.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:56 smithi183 ceph-mon[32791]: Deploying daemon haproxy.nfs.foo.smithi183.svnlgu on smithi183 2024-09-11T08:11:57.506 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-11T08:11:57.506 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-11T08:11:57.516 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-11T08:11:57.516 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:11:57.779 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:11:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:57 smithi003 ceph-mon[25399]: pgmap v191: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:11:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:57 smithi003 ceph-mon[25399]: from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:57.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:57 smithi183 ceph-mon[32791]: pgmap v191: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:11:57.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:57 smithi183 ceph-mon[32791]: from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:11:59.555 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:11:59.556 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:11:54.691123Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:11:43.051261Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:11:54.691187Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:41.059016Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "last_refresh": "2024-09-11T08:11:54.691696Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:11:43.051478Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:11:43.051563Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:55.038557Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "last_refresh": "2024-09-11T08:11:54.691634Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:11:43.051406Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:11:43.051640Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:11:54.691248Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-11T08:11:59.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:59 smithi003 ceph-mon[25399]: pgmap v192: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:11:59.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:11:59 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:11:59.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:59 smithi183 ceph-mon[32791]: pgmap v192: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:11:59.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:11:59 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:00.260 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-11T08:12:00.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:00 smithi183 ceph-mon[32791]: from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:00.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:00 smithi003 ceph-mon[25399]: from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:01.262 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:12:01.533 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:01.927 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:01 smithi003 ceph-mon[25399]: pgmap v193: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:12:01.927 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:01.927 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:01.927 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:01 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:01 smithi183 ceph-mon[32791]: pgmap v193: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:12:01.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:01.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:01 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:02 smithi003 ceph-mon[25399]: 10.0.31.3 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-09-11T08:12:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:02 smithi003 ceph-mon[25399]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:12:02.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:02 smithi003 ceph-mon[25399]: Deploying daemon keepalived.nfs.foo.smithi183.qmeeai on smithi183 2024-09-11T08:12:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:02 smithi183 ceph-mon[32791]: 10.0.31.3 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-09-11T08:12:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:02 smithi183 ceph-mon[32791]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:12:02.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:02 smithi183 ceph-mon[32791]: Deploying daemon keepalived.nfs.foo.smithi183.qmeeai on smithi183 2024-09-11T08:12:03.366 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:12:03.366 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:11:54.691123Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:11:43.051261Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:11:54.691187Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:12:00.932387Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:11:43.051478Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:11:43.051563Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:55.038557Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "last_refresh": "2024-09-11T08:11:54.691634Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:11:43.051406Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:11:43.051640Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:11:54.691248Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-11T08:12:03.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:03 smithi003 ceph-mon[25399]: pgmap v194: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:12:03.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:03 smithi183 ceph-mon[32791]: pgmap v194: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-11T08:12:04.015 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-11T08:12:04.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:04 smithi183 ceph-mon[32791]: from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:05.017 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:12:05.046 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:04 smithi003 ceph-mon[25399]: from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:05.288 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:05.868 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:05 smithi183 ceph-mon[32791]: pgmap v195: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-11T08:12:06.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:05 smithi003 ceph-mon[25399]: pgmap v195: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-11T08:12:07.091 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:12:07.091 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:11:54.691123Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:11:43.051261Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:11:54.691187Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:12:00.932387Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:11:43.051478Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:11:43.051563Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:55.038557Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "last_refresh": "2024-09-11T08:11:54.691634Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:11:43.051406Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:11:43.051640Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:11:54.691248Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:43.051882Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-11T08:12:07.736 INFO:tasks.cephadm:ingress.nfs.foo has 2/4 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: pgmap v196: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:07.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:07 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:12:08.202 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: pgmap v196: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-11T08:12:08.202 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:08.203 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:08.203 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:08.203 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:08.203 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:07 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:12:08.737 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-11T08:12:08.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:08 smithi183 ceph-mon[32791]: from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:09.033 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:08 smithi003 ceph-mon[25399]: from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:10.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:09 smithi183 ceph-mon[32791]: pgmap v197: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:10.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:09 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:10.078 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:09 smithi003 ceph-mon[25399]: pgmap v197: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.4 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:10.078 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:09 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:10.312 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:12.008 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:11 smithi003 ceph-mon[25399]: pgmap v198: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:12.008 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:12.008 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:11 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:12.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:11 smithi183 ceph-mon[32791]: pgmap v198: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:12.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:12.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:11 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:13.582 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-11T08:12:13.582 INFO:teuthology.orchestra.run.smithi003.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-11T08:06:05.314881Z", "last_refresh": "2024-09-11T08:11:54.691123Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:24.068503Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-11T08:06:00.230857Z", "last_refresh": "2024-09-11T08:11:54.690974Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true}, "status": {"created": "2024-09-11T08:06:02.703184Z", "last_refresh": "2024-09-11T08:11:54.691187Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:12:07.582742Z 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.3/16"}, "status": {"created": "2024-09-11T08:11:02.710540Z", "last_refresh": "2024-09-11T08:11:54.691696Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.3/16"}}, {"events": ["2024-09-11T08:07:32.497670Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-11T08:05:58.208777Z", "last_refresh": "2024-09-11T08:11:54.690901Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:42.260885Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi003:172.21.15.3=smithi003", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-11T08:06:49.745192Z", "last_refresh": "2024-09-11T08:11:54.690756Z", "running": 2, "size": 2}}, {"events": ["2024-09-11T08:11:55.038557Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-11T08:11:02.705979Z", "last_refresh": "2024-09-11T08:11:54.691634Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:07:28.511409Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-11T08:06:04.095873Z", "last_refresh": "2024-09-11T08:11:54.691048Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-11T08:07:49.434441Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-11T08:07:49.431052Z", "last_refresh": "2024-09-11T08:11:54.691311Z", "running": 8, "size": 8}}, {"events": ["2024-09-11T08:07:42.265301Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-11T08:06:01.423532Z", "last_refresh": "2024-09-11T08:11:54.691248Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-11T08:11:18.329715Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-11T08:11:18.320968Z", "last_refresh": "2024-09-11T08:11:54.691571Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-11T08:12:13.822 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:13 smithi003 ceph-mon[25399]: pgmap v199: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:14.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:13 smithi183 ceph-mon[32791]: pgmap v199: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:14.717 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-11T08:12:14.717 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-11T08:12:14.729 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:12:14.729 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-11T08:12:14.759 INFO:teuthology.orchestra.run.smithi003.stderr:+ mkdir /mnt/foo 2024-09-11T08:12:14.815 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-11T08:12:14.880 INFO:teuthology.orchestra.run.smithi003.stderr:+ sleep 5 2024-09-11T08:12:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:14 smithi003 ceph-mon[25399]: from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1a", "id": [4, 6]}]: dispatch 2024-09-11T08:12:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.3", "id": [5, 3]}]: dispatch 2024-09-11T08:12:14.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:14 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:15.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:14 smithi183 ceph-mon[32791]: from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-11T08:12:15.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1a", "id": [4, 6]}]: dispatch 2024-09-11T08:12:15.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.3", "id": [5, 3]}]: dispatch 2024-09-11T08:12:15.233 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:14 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:15.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:15 smithi003 ceph-mon[25399]: pgmap v200: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:15.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1a", "id": [4, 6]}]': finished 2024-09-11T08:12:15.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:15 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.3", "id": [5, 3]}]': finished 2024-09-11T08:12:15.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:15 smithi003 ceph-mon[25399]: osdmap e63: 8 total, 8 up, 8 in 2024-09-11T08:12:15.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:15 smithi183 ceph-mon[32791]: pgmap v200: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-11T08:12:15.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1a", "id": [4, 6]}]': finished 2024-09-11T08:12:15.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:15 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.3", "id": [5, 3]}]': finished 2024-09-11T08:12:15.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:15 smithi183 ceph-mon[32791]: osdmap e63: 8 total, 8 up, 8 in 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: osdmap e64: 8 total, 8 up, 8 in 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:12:17.056 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.057 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:12:17.057 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:16 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: osdmap e64: 8 total, 8 up, 8 in 2024-09-11T08:12:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:12:17.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:12:17.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:17.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:12:17.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:16 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:18.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:17 smithi003 ceph-mon[25399]: pgmap v203: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:12:18.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:17 smithi003 ceph-mon[25399]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:12:18.060 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:17 smithi003 ceph-mon[25399]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:12:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:17 smithi183 ceph-mon[32791]: pgmap v203: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:12:18.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:17 smithi183 ceph-mon[32791]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:12:18.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:17 smithi183 ceph-mon[32791]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:12:19.884 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.3:/foobucket /mnt/foo' 2024-09-11T08:12:19.954 INFO:teuthology.orchestra.run.smithi003.stderr:+ mount -t nfs 10.0.31.3:/foobucket /mnt/foo 2024-09-11T08:12:20.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:19 smithi003 ceph-mon[25399]: pgmap v204: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-11T08:12:20.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:19 smithi183 ceph-mon[32791]: pgmap v204: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-11T08:12:20.726 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-11T08:12:20.793 INFO:teuthology.orchestra.run.smithi003.stderr:+ find /mnt/foo -ls 2024-09-11T08:12:20.799 INFO:teuthology.orchestra.run.smithi003.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 11 08:11 /mnt/foo 2024-09-11T08:12:20.799 INFO:teuthology.orchestra.run.smithi003.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 11 08:11 /mnt/foo/myobject 2024-09-11T08:12:20.801 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-11T08:12:20.868 INFO:teuthology.orchestra.run.smithi003.stderr:+ grep thebody /mnt/foo/myobject 2024-09-11T08:12:20.870 INFO:teuthology.orchestra.run.smithi003.stdout:thebody 2024-09-11T08:12:20.872 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-11T08:12:20.938 INFO:teuthology.orchestra.run.smithi003.stderr:+ echo test 2024-09-11T08:12:20.952 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-11T08:12:21.018 INFO:teuthology.orchestra.run.smithi003.stderr:+ sync 2024-09-11T08:12:21.415 INFO:teuthology.run_tasks:Running task python... 2024-09-11T08:12:21.426 INFO:tasks.python:Running python on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:12:21.426 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-09-11T08:12:21.426 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-11T08:12:21.741 INFO:teuthology.orchestra.run.smithi003.stdout:b'test\n' 2024-09-11T08:12:21.793 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-11T08:12:21.803 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:12:21.803 DEBUG:teuthology.orchestra.run.smithi003:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-11T08:12:21.831 INFO:teuthology.orchestra.run.smithi003.stderr:+ umount /mnt/foo 2024-09-11T08:12:21.850 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:12:21.859 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:12:21.860 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-11T08:12:22.032 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:21 smithi003 ceph-mon[25399]: pgmap v205: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-11T08:12:22.174 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:22.231 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:21 smithi183 ceph-mon[32791]: pgmap v205: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: Reconfiguring keepalived.nfs.foo.smithi003.nlqqtd (dependencies changed)... 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: 10.0.31.3 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-09-11T08:12:23.219 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: Reconfiguring daemon keepalived.nfs.foo.smithi003.nlqqtd on smithi003 2024-09-11T08:12:23.220 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:22 smithi003 ceph-mon[25399]: pgmap v206: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 895 B/s rd, 0 op/s 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: Reconfiguring keepalived.nfs.foo.smithi003.nlqqtd (dependencies changed)... 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: 10.0.31.3 is in 10.0.0.0/16 on smithi003 interface ens1f0 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: 10.0.31.3 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: Reconfiguring daemon keepalived.nfs.foo.smithi003.nlqqtd on smithi003 2024-09-11T08:12:23.232 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:22 smithi183 ceph-mon[32791]: pgmap v206: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 895 B/s rd, 0 op/s 2024-09-11T08:12:25.123 INFO:teuthology.orchestra.run.smithi003.stdout:Successfully deleted export 2024-09-11T08:12:25.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:25 smithi003 ceph-mon[25399]: pgmap v207: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.2 KiB/s rd, 643 B/s wr, 13 op/s 2024-09-11T08:12:25.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:25 smithi183 ceph-mon[32791]: pgmap v207: 225 pgs: 225 active+clean; 584 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.2 KiB/s rd, 643 B/s wr, 13 op/s 2024-09-11T08:12:25.789 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-11T08:12:26.052 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:26.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:26 smithi003 ceph-mon[25399]: from='client.14716 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:26.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:26 smithi183 ceph-mon[32791]: from='client.14716 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:27.568 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:27 smithi003 ceph-mon[25399]: pgmap v208: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.5 KiB/s rd, 776 B/s wr, 13 op/s 2024-09-11T08:12:27.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:27 smithi183 ceph-mon[32791]: pgmap v208: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.5 KiB/s rd, 776 B/s wr, 13 op/s 2024-09-11T08:12:28.801 INFO:teuthology.orchestra.run.smithi003.stdout:NFS Cluster Deleted Successfully 2024-09-11T08:12:29.534 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-11T08:12:29.547 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:12:29.547 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-11T08:12:29.875 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:30.105 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: pgmap v209: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.5 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:30.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: from='client.14720 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:30.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: Remove service ingress.nfs.foo 2024-09-11T08:12:30.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.106 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: Remove service nfs.foo 2024-09-11T08:12:30.107 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.107 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:29 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:30.134 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: pgmap v209: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.5 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:30.134 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: from='client.14720 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:30.135 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: Remove service ingress.nfs.foo 2024-09-11T08:12:30.135 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.135 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: Remove service nfs.foo 2024-09-11T08:12:30.135 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.135 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:29 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:30 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:30 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:30 smithi003 ceph-mon[25399]: Removing orphan daemon haproxy.nfs.foo.smithi183.svnlgu... 2024-09-11T08:12:30.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:30 smithi003 ceph-mon[25399]: Removing daemon haproxy.nfs.foo.smithi183.svnlgu from smithi183 -- ports [2049, 9049] 2024-09-11T08:12:30.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:30 smithi003 ceph-mon[25399]: pgmap v210: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:30.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:30 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:30 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:30.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:30 smithi183 ceph-mon[32791]: Removing orphan daemon haproxy.nfs.foo.smithi183.svnlgu... 2024-09-11T08:12:30.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:30 smithi183 ceph-mon[32791]: Removing daemon haproxy.nfs.foo.smithi183.svnlgu from smithi183 -- ports [2049, 9049] 2024-09-11T08:12:30.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:30 smithi183 ceph-mon[32791]: pgmap v210: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:31.492 INFO:teuthology.orchestra.run.smithi003.stdout:167 167 2024-09-11T08:12:32.099 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:31 smithi003 ceph-mon[25399]: Removing key for client.ingress.nfs.foo.smithi183.svnlgu 2024-09-11T08:12:32.099 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:31 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi183.svnlgu"}]: dispatch 2024-09-11T08:12:32.099 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:31 smithi003 ceph-mon[25399]: Removing orphan daemon keepalived.nfs.foo.smithi183.qmeeai... 2024-09-11T08:12:32.099 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:31 smithi003 ceph-mon[25399]: Removing daemon keepalived.nfs.foo.smithi183.qmeeai from smithi183 -- ports [] 2024-09-11T08:12:32.130 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:31 smithi183 ceph-mon[32791]: Removing key for client.ingress.nfs.foo.smithi183.svnlgu 2024-09-11T08:12:32.131 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:31 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi183.svnlgu"}]: dispatch 2024-09-11T08:12:32.131 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:31 smithi183 ceph-mon[32791]: Removing orphan daemon keepalived.nfs.foo.smithi183.qmeeai... 2024-09-11T08:12:32.131 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:31 smithi183 ceph-mon[32791]: Removing daemon keepalived.nfs.foo.smithi183.qmeeai from smithi183 -- ports [] 2024-09-11T08:12:32.182 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch status' 2024-09-11T08:12:32.445 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:32.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:32 smithi003 ceph-mon[25399]: pgmap v211: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:33.136 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:32 smithi183 ceph-mon[32791]: pgmap v211: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-11T08:12:34.248 INFO:teuthology.orchestra.run.smithi003.stdout:Backend: cephadm 2024-09-11T08:12:34.248 INFO:teuthology.orchestra.run.smithi003.stdout:Available: Yes 2024-09-11T08:12:34.248 INFO:teuthology.orchestra.run.smithi003.stdout:Paused: No 2024-09-11T08:12:34.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:34 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi183.qmeeai"}]: dispatch 2024-09-11T08:12:34.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:34 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:12:34.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:34 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:12:34.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:34 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi183.qmeeai"}]: dispatch 2024-09-11T08:12:34.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:34 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:12:34.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:34 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-09-11T08:12:35.001 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-11T08:12:35.488 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:35 smithi003 ceph-mon[25399]: Removing key for client.ingress.nfs.foo.smithi183.qmeeai 2024-09-11T08:12:35.488 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:35 smithi003 ceph-mon[25399]: from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:35.488 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:35 smithi003 ceph-mon[25399]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:12:35.488 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:35 smithi003 ceph-mon[25399]: pgmap v212: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.9 KiB/s rd, 682 B/s wr, 11 op/s 2024-09-11T08:12:35.586 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:35 smithi183 ceph-mon[32791]: Removing key for client.ingress.nfs.foo.smithi183.qmeeai 2024-09-11T08:12:35.587 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:35 smithi183 ceph-mon[32791]: from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:35.587 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:35 smithi183 ceph-mon[32791]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-11T08:12:35.587 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:35 smithi183 ceph-mon[32791]: pgmap v212: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.9 KiB/s rd, 682 B/s wr, 11 op/s 2024-09-11T08:12:35.788 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:37.548 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:37 smithi003 ceph-mon[25399]: pgmap v213: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:37.548 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:37 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:37.549 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:37 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:37.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:37 smithi183 ceph-mon[32791]: pgmap v213: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:37.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:37.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:37 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:38.491 INFO:teuthology.orchestra.run.smithi003.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-11T08:12:38.491 INFO:teuthology.orchestra.run.smithi003.stdout:alertmanager.smithi003 smithi003 *:9093,9094 running (4m) 22s ago 5m 24.2M - 0.25.0 c8568f914cd2 4f2fb1efbe30 2024-09-11T08:12:38.491 INFO:teuthology.orchestra.run.smithi003.stdout:crash.smithi003 smithi003 running (6m) 22s ago 6m 6895k - 17.2.7-1623-gd0e6828a 4a918172a497 ec74b52f2760 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:crash.smithi183 smithi183 running (5m) 2s ago 5m 6903k - 17.2.7-1623-gd0e6828a 4a918172a497 c0764cc3c1c5 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:grafana.smithi003 smithi003 *:3000 running (4m) 22s ago 5m 85.0M - 9.4.7 954c08fa6188 7808fe5c161b 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:haproxy.nfs.foo.smithi003.mlbkcd smithi003 *:2049,9049 running (68s) 22s ago 67s 8548k - 2.3.17-d1c9119 e85424b0d443 9e93c1676219 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:keepalived.nfs.foo.smithi003.nlqqtd smithi003 starting - - - - 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:mgr.smithi003.abfhzj smithi003 *:9283,8765,8443 running (7m) 22s ago 7m 460M - 17.2.7-1623-gd0e6828a 4a918172a497 2e68e320eb0d 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:mgr.smithi183.nqrlko smithi183 *:8443,9283 running (5m) 2s ago 5m 403M - 17.2.7-1623-gd0e6828a 4a918172a497 d15f295b768b 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:mon.smithi003 smithi003 running (7m) 22s ago 7m 46.1M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 fe0636f33f2c 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:mon.smithi183 smithi183 running (5m) 2s ago 5m 37.8M 2048M 17.2.7-1623-gd0e6828a 4a918172a497 b1f368ab0b1a 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:nfs.foo.0.0.smithi003.evpkpe smithi003 *:12049 running (77s) 22s ago 77s 56.5M - 5.9 4a918172a497 2584cd79533f 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter.smithi003 smithi003 *:9100 running (6m) 22s ago 6m 14.2M - 1.5.0 0da6a335fe13 90b09c21a1ac 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter.smithi183 smithi183 *:9100 running (5m) 2s ago 5m 15.3M - 1.5.0 0da6a335fe13 86e64cf96b8a 2024-09-11T08:12:38.492 INFO:teuthology.orchestra.run.smithi003.stdout:osd.0 smithi183 running (3m) 2s ago 3m 50.0M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 b93f2ba36497 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.1 smithi003 running (3m) 22s ago 3m 48.5M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 775f774129eb 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.2 smithi183 running (3m) 2s ago 3m 51.0M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 0ce564f87848 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.3 smithi003 running (3m) 22s ago 3m 47.3M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 dbcac29ada3f 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.4 smithi183 running (3m) 2s ago 3m 50.0M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 da7fc237cdfb 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.5 smithi003 running (3m) 22s ago 3m 45.3M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 f708ce2e1fc3 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.6 smithi183 running (3m) 2s ago 3m 45.9M 3984M 17.2.7-1623-gd0e6828a 4a918172a497 1ddb83bd993b 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:osd.7 smithi003 running (3m) 22s ago 3m 45.5M 3217M 17.2.7-1623-gd0e6828a 4a918172a497 06c7d8abf4d9 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:prometheus.smithi003 smithi003 *:9095 starting - - - - 2024-09-11T08:12:38.493 INFO:teuthology.orchestra.run.smithi003.stdout:rgw.foorgw.smithi003.gosjan smithi003 *:8800 running (80s) 22s ago 80s 66.8M - 17.2.7-1623-gd0e6828a 4a918172a497 88b3b617c3ad 2024-09-11T08:12:38.494 INFO:teuthology.orchestra.run.smithi003.stdout:rgw.foorgw.smithi183.wnezbj smithi183 *:8800 running (84s) 2s ago 83s 66.5M - 17.2.7-1623-gd0e6828a 4a918172a497 e7090c84e810 2024-09-11T08:12:39.211 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-11T08:12:39.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:39 smithi003 ceph-mon[25399]: pgmap v214: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-11T08:12:39.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:39 smithi003 ceph-mon[25399]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:39.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:39 smithi183 ceph-mon[32791]: pgmap v214: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-11T08:12:39.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:39 smithi183 ceph-mon[32791]: from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:40.079 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:41.708 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:41 smithi003 ceph-mon[25399]: pgmap v215: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:41.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:41 smithi183 ceph-mon[32791]: pgmap v215: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:alertmanager ?:9093,9094 1/1 26s ago 6m count:1 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:crash 2/2 26s ago 6m * 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:grafana ?:3000 1/1 26s ago 6m count:1 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:ingress.nfs.foo 10.0.31.3:2049,9049 1/4 100s count:2 2024-09-11T08:12:42.913 INFO:teuthology.orchestra.run.smithi003.stdout:mgr 2/2 26s ago 6m count:2 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:mon 2/2 26s ago 5m smithi003:172.21.15.3=smithi003;smithi183:172.21.15.183=smithi183;count:2 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:nfs.foo ?:12049 1/1 100s count:1 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:node-exporter ?:9100 2/2 26s ago 6m * 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:osd.all-available-devices 8 26s ago 4m * 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:prometheus ?:9095 0/1 - 6m count:1 2024-09-11T08:12:42.914 INFO:teuthology.orchestra.run.smithi003.stdout:rgw.foorgw ?:8800 2/2 26s ago 84s count:2 2024-09-11T08:12:43.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:43 smithi003 ceph-mon[25399]: pgmap v216: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:43.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:43 smithi183 ceph-mon[32791]: pgmap v216: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:44.292 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-11T08:12:44.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:44 smithi003 ceph-mon[25399]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:44.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:44 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:44.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:44 smithi183 ceph-mon[32791]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:44.731 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:44 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd blocklist ls", "format": "json"}]: dispatch 2024-09-11T08:12:45.031 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:45.468 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:45 smithi003 ceph-mon[25399]: pgmap v217: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:45.601 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:45 smithi183 ceph-mon[32791]: pgmap v217: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: Checking dashboard <-> RGW credentials 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.758 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:46 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:12:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-09-11T08:12:46.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-09-11T08:12:46.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: Checking dashboard <-> RGW credentials 2024-09-11T08:12:46.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:46.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:46 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-09-11T08:12:47.858 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:47 smithi003 ceph-mon[25399]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:12:47.858 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:47 smithi003 ceph-mon[25399]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:12:47.858 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:47 smithi003 ceph-mon[25399]: pgmap v218: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:12:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:47 smithi183 ceph-mon[32791]: Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-11T08:12:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:47 smithi183 ceph-mon[32791]: Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-11T08:12:47.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:47 smithi183 ceph-mon[32791]: pgmap v218: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-09-11T08:12:49.722 INFO:teuthology.orchestra.run.smithi003.stdout:HOST ADDR LABELS STATUS 2024-09-11T08:12:49.723 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 172.21.15.3 2024-09-11T08:12:49.723 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 172.21.15.183 2024-09-11T08:12:49.723 INFO:teuthology.orchestra.run.smithi003.stdout:2 hosts in cluster 2024-09-11T08:12:49.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:49 smithi003 ceph-mon[25399]: pgmap v219: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-11T08:12:49.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:49 smithi183 ceph-mon[32791]: pgmap v219: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-11T08:12:50.876 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:50 smithi003 ceph-mon[25399]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:50.904 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-11T08:12:50.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:50 smithi183 ceph-mon[32791]: from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:51.900 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:51.967 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:51 smithi003 ceph-mon[25399]: pgmap v220: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-11T08:12:51.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:51 smithi183 ceph-mon[32791]: pgmap v220: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-11T08:12:53.722 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:53 smithi003 ceph-mon[25399]: pgmap v221: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:53.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:53 smithi183 ceph-mon[32791]: pgmap v221: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:54.102 INFO:teuthology.orchestra.run.smithi003.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-11T08:12:54.102 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT5330009Z400BGN 372G No 109s ago Has a FileSystem, LVM detected 2024-09-11T08:12:54.102 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme1n1 ssd Linux_a4dc976c151ecfbf8889 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.102 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme2n1 ssd Linux_b7bb6e906eba02105946 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.102 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme3n1 ssd Linux_302f31195cae6746d703 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi003 /dev/nvme4n1 ssd Linux_d808658ddcdfcc494ff5 89.4G No 109s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500QJ400BGN 372G No 67s ago Has a FileSystem, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme1n1 ssd Linux_4e16a1a0884b4ccf92b7 89.4G No 67s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme2n1 ssd Linux_3c92070c9200bec3337e 89.4G No 67s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme3n1 ssd Linux_3409f6be9dc4aeebdcb9 89.4G No 67s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.103 INFO:teuthology.orchestra.run.smithi003.stdout:smithi183 /dev/nvme4n1 ssd Linux_ee7a7c40f3c9e38130b5 89.4G No 67s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-11T08:12:54.893 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 37f299f8-7014-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-11T08:12:55.220 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/mon.smithi003/config 2024-09-11T08:12:55.721 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:55 smithi003 ceph-mon[25399]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:55.721 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:55 smithi003 ceph-mon[25399]: pgmap v222: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:55.721 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:55.721 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:55 smithi003 ceph-mon[25399]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:55 smithi183 ceph-mon[32791]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-11T08:12:55.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:55 smithi183 ceph-mon[32791]: pgmap v222: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:55.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:55 smithi183 ceph-mon[32791]: from='mgr.14206 172.21.15.3:0/2738424399' entity='mgr.smithi003.abfhzj' 2024-09-11T08:12:56.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:56 smithi003 ceph-mon[25399]: Removing orphan daemon nfs.foo.0.0.smithi003.evpkpe... 2024-09-11T08:12:56.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:56 smithi003 ceph-mon[25399]: Removing daemon nfs.foo.0.0.smithi003.evpkpe from smithi003 -- ports [12049] 2024-09-11T08:12:56.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:56 smithi183 ceph-mon[32791]: Removing orphan daemon nfs.foo.0.0.smithi003.evpkpe... 2024-09-11T08:12:56.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:56 smithi183 ceph-mon[32791]: Removing daemon nfs.foo.0.0.smithi003.evpkpe from smithi003 -- ports [12049] 2024-09-11T08:12:57.008 INFO:teuthology.orchestra.run.smithi003.stdout:osd.all-available-devices 8 20s ago 5m * 2024-09-11T08:12:57.713 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-11T08:12:57.723 INFO:tasks.vip:Removing 10.0.15.3 (and any VIPs) on smithi003.front.sepia.ceph.com iface ens1f0... 2024-09-11T08:12:57.723 DEBUG:teuthology.orchestra.run.smithi003:> sudo ip addr del 10.0.15.3/16 dev ens1f0 2024-09-11T08:12:57.755 DEBUG:teuthology.orchestra.run.smithi003:> sudo ip addr del 10.0.31.3/16 dev ens1f0 2024-09-11T08:12:57.823 INFO:tasks.vip:Removing 10.0.15.183 (and any VIPs) on smithi183.front.sepia.ceph.com iface enp3s0f1... 2024-09-11T08:12:57.823 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr del 10.0.15.183/16 dev enp3s0f1 2024-09-11T08:12:57.852 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr del 10.0.31.3/16 dev enp3s0f1 2024-09-11T08:12:57.916 INFO:teuthology.orchestra.run.smithi183.stderr:Error: ipv4: Address not found. 2024-09-11T08:12:57.917 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-11T08:12:57.917 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-11T08:12:57.928 INFO:tasks.cephadm:Teardown begin 2024-09-11T08:12:57.928 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:12:57.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:57 smithi003 ceph-mon[25399]: pgmap v223: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:57.956 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:12:57.960 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:57 smithi183 ceph-mon[32791]: pgmap v223: 225 pgs: 225 active+clean; 585 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-11T08:12:57.982 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-11T08:12:57.982 DEBUG:teuthology.orchestra.run.smithi003:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T08:12:58.013 DEBUG:teuthology.orchestra.run.smithi183:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-11T08:12:58.037 INFO:tasks.cephadm:Stopping all daemons... 2024-09-11T08:12:58.038 INFO:tasks.cephadm.mon.smithi003:Stopping mon.smithi003... 2024-09-11T08:12:58.038 DEBUG:teuthology.orchestra.run.smithi003:> sudo systemctl stop ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003 2024-09-11T08:12:58.218 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 systemd[1]: Stopping Ceph mon.smithi003 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:12:58.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003[25395]: 2024-09-11T08:12:58.360+0000 7f91dca6a640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi003 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T08:12:58.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003[25395]: 2024-09-11T08:12:58.360+0000 7f91dca6a640 -1 mon.smithi003@0(leader) e2 *** Got Signal Terminated *** 2024-09-11T08:12:58.718 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 podman[83711]: 2024-09-11 08:12:58.442765779 +0000 UTC m=+0.200468186 container died fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-11T08:12:59.079 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 podman[83711]: 2024-09-11 08:12:58.835360506 +0000 UTC m=+0.593062912 container cleanup fe0636f33f2cd07bffe1b07e144f79bb9120d51f99409c8af341c4fdd8a661f4 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d0e6828a2016d48cf25ad84064e50742bb1c39b9, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.schema-version=1.0) 2024-09-11T08:12:59.079 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 11 08:12:58 smithi003 bash[83711]: ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi003 2024-09-11T08:12:59.237 DEBUG:teuthology.orchestra.run.smithi003:> sudo pkill -f 'journalctl -f -n 0 -u ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi003.service' 2024-09-11T08:12:59.289 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T08:12:59.290 INFO:tasks.cephadm.mon.smithi003:Stopped mon.smithi003 2024-09-11T08:12:59.290 INFO:tasks.cephadm.mon.smithi183:Stopping mon.smithi183... 2024-09-11T08:12:59.290 DEBUG:teuthology.orchestra.run.smithi183:> sudo systemctl stop ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi183 2024-09-11T08:12:59.590 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:59 smithi183 systemd[1]: Stopping Ceph mon.smithi183 for 37f299f8-7014-11ef-bcea-c7b262605968... 2024-09-11T08:12:59.981 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:59 smithi183 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183[32787]: 2024-09-11T08:12:59.587+0000 7f7be1d3c640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi183 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-11T08:12:59.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:59 smithi183 ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183[32787]: 2024-09-11T08:12:59.587+0000 7f7be1d3c640 -1 mon.smithi183@1(peon) e2 *** Got Signal Terminated *** 2024-09-11T08:12:59.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:12:59 smithi183 podman[61047]: 2024-09-11 08:12:59.813834845 +0000 UTC m=+0.328245225 container died b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_BRANCH=HEAD) 2024-09-11T08:13:00.423 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 podman[61047]: 2024-09-11 08:13:00.230542464 +0000 UTC m=+0.744952890 container cleanup b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, ceph=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-09-11T08:13:00.423 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 bash[61047]: ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183 2024-09-11T08:13:00.659 DEBUG:teuthology.orchestra.run.smithi183:> sudo pkill -f 'journalctl -f -n 0 -u ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi183.service' 2024-09-11T08:13:00.681 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 podman[61059]: 2024-09-11 08:13:00.423394451 +0000 UTC m=+0.602190670 container remove b1f368ab0b1a5008e47bdea8f4c6dbcf8f8dec41779e3cd605f1ededb1479595 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:ef9c65e2a6ea9377a732e309273ea235301c4d330f09e2972aeebc38173d3e40, name=ceph-37f299f8-7014-11ef-bcea-c7b262605968-mon-smithi183, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-guits-quincy-2024-09-10-2008-quincy-d0e6828, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-11T08:13:00.681 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 systemd[1]: ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi183.service: Deactivated successfully. 2024-09-11T08:13:00.681 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 systemd[1]: Stopped Ceph mon.smithi183 for 37f299f8-7014-11ef-bcea-c7b262605968. 2024-09-11T08:13:00.681 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Sep 11 08:13:00 smithi183 systemd[1]: ceph-37f299f8-7014-11ef-bcea-c7b262605968@mon.smithi183.service: Consumed 3.752s CPU time. 2024-09-11T08:13:00.701 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-11T08:13:00.702 INFO:tasks.cephadm.mon.smithi183:Stopped mon.smithi183 2024-09-11T08:13:00.702 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 37f299f8-7014-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T08:14:04.520 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 37f299f8-7014-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-11T08:14:51.820 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:14:51.855 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-11T08:14:51.882 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-11T08:14:51.885 DEBUG:teuthology.misc:Transferring archived files from smithi003:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi003/crash 2024-09-11T08:14:51.886 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash -- . 2024-09-11T08:14:51.933 INFO:teuthology.orchestra.run.smithi003.stderr:tar: /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T08:14:51.933 INFO:teuthology.orchestra.run.smithi003.stderr:tar: Error is not recoverable: exiting now 2024-09-11T08:14:51.935 DEBUG:teuthology.misc:Transferring archived files from smithi183:/var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi183/crash 2024-09-11T08:14:51.936 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash -- . 2024-09-11T08:14:51.974 INFO:teuthology.orchestra.run.smithi183.stderr:tar: /var/lib/ceph/37f299f8-7014-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-11T08:14:51.974 INFO:teuthology.orchestra.run.smithi183.stderr:tar: Error is not recoverable: exiting now 2024-09-11T08:14:51.975 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-11T08:14:51.975 DEBUG:teuthology.orchestra.run.smithi003:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-09-11T08:14:52.005 INFO:teuthology.orchestra.run.smithi003.stderr:grep: /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph.log: No such file or directory 2024-09-11T08:14:52.006 INFO:tasks.cephadm:Compressing logs... 2024-09-11T08:14:52.007 DEBUG:teuthology.orchestra.run.smithi003:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T08:14:52.049 DEBUG:teuthology.orchestra.run.smithi183:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-11T08:14:52.074 INFO:teuthology.orchestra.run.smithi183.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.0.log 2024-09-11T08:14:52.074 INFO:teuthology.orchestra.run.smithi183.stderr:: No such file or directory 2024-09-11T08:14:52.074 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T08:14:52.074 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.4.log 2024-09-11T08:14:52.074 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.0.log: /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi183.log 2024-09-11T08:14:52.075 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi183.wnezbj.log 2024-09-11T08:14:52.079 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.2.log 2024-09-11T08:14:52.079 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi183.log: /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi183.wnezbj.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.6.log 2024-09-11T08:14:52.080 INFO:teuthology.orchestra.run.smithi183.stderr: 59.2% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi183.wnezbj.log.gz 2024-09-11T08:14:52.080 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi183.nqrlko.log 2024-09-11T08:14:52.080 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T08:14:52.080 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi183.nqrlko.log: /var/log/ceph/cephadm.log: 92.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T08:14:52.081 INFO:teuthology.orchestra.run.smithi003.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.1.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:: No such file or directory 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi003.gosjan.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.7.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi003.gosjan.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr: 69.9% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi003.gosjan.log.gz 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi003.abfhzj.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi003.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log: /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi003.abfhzj.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.5.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi003.log: gzip -5 --verbose -- /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.3.log 2024-09-11T08:14:52.082 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-11T08:14:52.083 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.3.log: /var/log/ceph/cephadm.log: 92.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-11T08:14:52.083 INFO:teuthology.orchestra.run.smithi183.stderr: 92.1% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi183.nqrlko.log.gz 2024-09-11T08:14:52.083 INFO:teuthology.orchestra.run.smithi183.stderr: 91.7% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T08:14:52.087 INFO:teuthology.orchestra.run.smithi003.stderr: 91.5% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-11T08:14:52.188 INFO:teuthology.orchestra.run.smithi183.stderr: 92.6% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi183.log.gz 2024-09-11T08:14:52.225 INFO:teuthology.orchestra.run.smithi003.stderr: 88.0% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mgr.smithi003.abfhzj.log.gz 2024-09-11T08:14:52.338 INFO:teuthology.orchestra.run.smithi003.stderr: 91.2% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-mon.smithi003.log.gz 2024-09-11T08:14:52.354 INFO:teuthology.orchestra.run.smithi183.stderr: 93.4% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.6.log.gz 2024-09-11T08:14:52.366 INFO:teuthology.orchestra.run.smithi003.stderr: 93.5% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.5.log.gz 2024-09-11T08:14:52.370 INFO:teuthology.orchestra.run.smithi183.stderr: 93.6% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.4.log.gz 2024-09-11T08:14:52.393 INFO:teuthology.orchestra.run.smithi003.stderr: 93.5% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.1.log.gz 2024-09-11T08:14:52.396 INFO:teuthology.orchestra.run.smithi003.stderr: 93.6% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.7.log.gz 2024-09-11T08:14:52.403 INFO:teuthology.orchestra.run.smithi183.stderr: 93.5% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.2.log.gz 2024-09-11T08:14:52.430 INFO:teuthology.orchestra.run.smithi183.stderr: 93.6% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.0.log.gz 2024-09-11T08:14:52.433 INFO:teuthology.orchestra.run.smithi183.stderr: 2024-09-11T08:14:52.433 INFO:teuthology.orchestra.run.smithi183.stderr:real 0m0.369s 2024-09-11T08:14:52.433 INFO:teuthology.orchestra.run.smithi183.stderr:user 0m1.350s 2024-09-11T08:14:52.433 INFO:teuthology.orchestra.run.smithi183.stderr:sys 0m0.065s 2024-09-11T08:14:52.490 INFO:teuthology.orchestra.run.smithi003.stderr: 93.6% -- replaced with /var/log/ceph/37f299f8-7014-11ef-bcea-c7b262605968/ceph-osd.3.log.gz 2024-09-11T08:14:52.492 INFO:teuthology.orchestra.run.smithi003.stderr: 2024-09-11T08:14:52.492 INFO:teuthology.orchestra.run.smithi003.stderr:real 0m0.429s 2024-09-11T08:14:52.492 INFO:teuthology.orchestra.run.smithi003.stderr:user 0m1.709s 2024-09-11T08:14:52.492 INFO:teuthology.orchestra.run.smithi003.stderr:sys 0m0.090s 2024-09-11T08:14:52.492 INFO:tasks.cephadm:Archiving logs... 2024-09-11T08:14:52.492 DEBUG:teuthology.misc:Transferring archived files from smithi003:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi003/log 2024-09-11T08:14:52.493 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T08:14:52.776 DEBUG:teuthology.misc:Transferring archived files from smithi183:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi183/log 2024-09-11T08:14:52.777 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-11T08:14:53.013 INFO:tasks.cephadm:Removing cluster... 2024-09-11T08:14:53.013 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 37f299f8-7014-11ef-bcea-c7b262605968 --force 2024-09-11T08:14:53.354 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 37f299f8-7014-11ef-bcea-c7b262605968 --force 2024-09-11T08:14:53.676 INFO:tasks.cephadm:Removing cephadm ... 2024-09-11T08:14:53.676 DEBUG:teuthology.orchestra.run.smithi003:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T08:14:53.693 DEBUG:teuthology.orchestra.run.smithi183:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-11T08:14:53.708 INFO:tasks.cephadm:Teardown complete 2024-09-11T08:14:53.708 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-11T08:14:53.721 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_1... 2024-09-11T08:14:53.721 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_1 2024-09-11T08:14:53.879 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-11T08:14:53.881 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_2... 2024-09-11T08:14:53.881 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_2 2024-09-11T08:14:54.033 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-11T08:14:54.035 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_3... 2024-09-11T08:14:54.035 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_3 2024-09-11T08:14:54.179 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-11T08:14:54.181 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_4... 2024-09-11T08:14:54.181 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_4 2024-09-11T08:14:54.323 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-11T08:14:54.325 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-11T08:14:54.325 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/scratch_devs 2024-09-11T08:14:54.351 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_1... 2024-09-11T08:14:54.351 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_1 2024-09-11T08:14:54.499 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-11T08:14:54.501 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_2... 2024-09-11T08:14:54.501 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_2 2024-09-11T08:14:54.637 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-11T08:14:54.639 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_3... 2024-09-11T08:14:54.639 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_3 2024-09-11T08:14:54.831 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-11T08:14:54.833 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_4... 2024-09-11T08:14:54.833 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_4 2024-09-11T08:14:55.028 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-11T08:14:55.030 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-09-11T08:14:55.030 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/scratch_devs 2024-09-11T08:14:55.056 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-11T08:14:55.067 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-11T08:14:55.067 DEBUG:teuthology.orchestra.run.smithi003:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T08:14:55.070 DEBUG:teuthology.orchestra.run.smithi183:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-11T08:14:55.085 INFO:teuthology.orchestra.run.smithi003.stderr:bash: line 1: ntpq: command not found 2024-09-11T08:14:55.090 INFO:teuthology.orchestra.run.smithi003.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T08:14:55.090 INFO:teuthology.orchestra.run.smithi003.stdout:=============================================================================== 2024-09-11T08:14:55.090 INFO:teuthology.orchestra.run.smithi003.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 26 -1314us[-1314us] +/- 73ms 2024-09-11T08:14:55.091 INFO:teuthology.orchestra.run.smithi003.stdout:^* hv02.front.sepia.ceph.com 3 6 377 27 +782us[ +765us] +/- 65ms 2024-09-11T08:14:55.091 INFO:teuthology.orchestra.run.smithi003.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 26 +333us[ +333us] +/- 64ms 2024-09-11T08:14:55.091 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:14:55.111 INFO:teuthology.orchestra.run.smithi183.stderr:bash: line 1: ntpq: command not found 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:=============================================================================== 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 23 -1282us[-1282us] +/- 73ms 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:^* hv02.front.sepia.ceph.com 3 6 377 26 +807us[ +808us] +/- 65ms 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 26 +356us[ +358us] +/- 64ms 2024-09-11T08:14:55.115 INFO:teuthology.orchestra.run.smithi183.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-11T08:14:55.116 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-11T08:14:55.127 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-11T08:14:55.127 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-11T08:14:55.138 DEBUG:teuthology.orchestra.run.smithi003:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-11T08:14:55.218 DEBUG:teuthology.orchestra.run.smithi183:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-11T08:14:55.283 DEBUG:teuthology.orchestra.run.smithi003:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-11T08:14:55.314 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T08:14:55.315 DEBUG:teuthology.orchestra.run.smithi183:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-09-11T08:14:55.342 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T08:14:55.343 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-11T08:14:55.353 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-11T08:14:55.362 INFO:teuthology.task.internal:Duration was 967.259565 seconds 2024-09-11T08:14:55.362 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-11T08:14:55.373 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-11T08:14:55.373 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T08:14:55.376 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-11T08:14:55.417 INFO:teuthology.orchestra.run.smithi003.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T08:14:55.422 INFO:teuthology.orchestra.run.smithi183.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-11T08:14:55.778 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-11T08:14:55.779 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi003.front.sepia.ceph.com 2024-09-11T08:14:55.779 DEBUG:teuthology.orchestra.run.smithi003:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T08:14:55.802 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi183.front.sepia.ceph.com 2024-09-11T08:14:55.802 DEBUG:teuthology.orchestra.run.smithi183:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-11T08:14:55.848 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-11T08:14:55.848 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T08:14:55.851 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-11T08:14:55.915 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-11T08:14:55.915 DEBUG:teuthology.orchestra.run.smithi003:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T08:14:55.920 DEBUG:teuthology.orchestra.run.smithi183:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-11T08:14:56.215 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-11T08:14:56.226 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-11T08:14:56.226 DEBUG:teuthology.orchestra.run.smithi003:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T08:14:56.252 DEBUG:teuthology.orchestra.run.smithi183:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-11T08:14:56.277 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-11T08:14:56.288 DEBUG:teuthology.orchestra.run.smithi003:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T08:14:56.295 DEBUG:teuthology.orchestra.run.smithi183:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-11T08:14:56.316 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = core 2024-09-11T08:14:56.340 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = core 2024-09-11T08:14:56.364 DEBUG:teuthology.orchestra.run.smithi003:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T08:14:56.387 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T08:14:56.387 DEBUG:teuthology.orchestra.run.smithi183:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-11T08:14:56.418 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-11T08:14:56.418 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-11T08:14:56.430 INFO:teuthology.task.internal:Transferring archived files... 2024-09-11T08:14:56.431 DEBUG:teuthology.misc:Transferring archived files from smithi003:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi003 2024-09-11T08:14:56.431 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T08:14:56.471 DEBUG:teuthology.misc:Transferring archived files from smithi183:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-11_06:53:43-orch:cephadm-wip-guits-quincy-2024-09-10-2008-quincy-distro-default-smithi/7901258/remote/smithi183 2024-09-11T08:14:56.471 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-11T08:14:56.506 INFO:teuthology.task.internal:Removing archive directory... 2024-09-11T08:14:56.506 DEBUG:teuthology.orchestra.run.smithi003:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T08:14:56.509 DEBUG:teuthology.orchestra.run.smithi183:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-11T08:14:56.555 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-11T08:14:56.567 INFO:teuthology.task.internal:Not uploading archives. 2024-09-11T08:14:56.568 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-11T08:14:56.578 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-11T08:14:56.579 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T08:14:56.581 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-11T08:14:56.594 INFO:teuthology.orchestra.run.smithi003.stdout: 265602 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 08:14 /home/ubuntu/cephtest 2024-09-11T08:14:56.609 INFO:teuthology.orchestra.run.smithi183.stdout: 265380 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 11 08:14 /home/ubuntu/cephtest 2024-09-11T08:14:56.610 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-11T08:14:56.623 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-11T08:14:56.650 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 967.2595653533936 owner: scheduled_gabrioux@teuthology success: true 2024-09-11T08:14:56.650 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-11T08:14:56.732 INFO:teuthology.run:pass