2026-02-18T04:58:14.772 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-18T04:58:14.786 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-18T04:58:14.867 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694 branch: 20.2.1_2.17.26-baseline_2 description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: yweinste@redhat.com first_in_suite: false flavor: default job_id: '54694' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: 20.2.1_2.17.26-baseline_2 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: 20.2.1_2.17.26-baseline_2 sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed owner: scheduled_yuriw@soko04.front.sepia.ceph.com priority: 69 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 407 sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: 20.2.1_2.17.26-baseline_2 suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed targets: trial044.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIqte9lVZKVYYN8ua+uFiF80UFjDBvKC1f2mTpfFKjuDVqKVPhKNLtzU63WrEvnwAmKVS8V15vriEhSIouhVhXc= trial080.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBN2ig1joUVUwbjyYEtAa4Dhq+LW93wXOFpsG94xDBw43x2Omtg12gHdbokxeCea8YrLSTbvFnVku0rrnHnaX2zc= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install runc nvmetcli nvme-cli -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-17_21:23:05 tube: trial user: yuriw verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.3682 2026-02-18T04:58:14.867 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa; will attempt to use it 2026-02-18T04:58:14.868 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_adc1923395f2bcd6ae89b5d331d278364d1848ed/qa/tasks 2026-02-18T04:58:14.868 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-18T04:58:14.869 INFO:teuthology.task.internal:Checking packages... 2026-02-18T04:58:14.869 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'adc1923395f2bcd6ae89b5d331d278364d1848ed' 2026-02-18T04:58:14.870 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-18T04:58:14.870 INFO:teuthology.packaging:ref: None 2026-02-18T04:58:14.870 INFO:teuthology.packaging:tag: None 2026-02-18T04:58:14.870 INFO:teuthology.packaging:branch: 20.2.1_2.17.26-baseline_2 2026-02-18T04:58:14.870 INFO:teuthology.packaging:sha1: adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T04:58:14.870 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=20.2.1_2.17.26-baseline_2 2026-02-18T04:58:14.990 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-670.gadc19233 2026-02-18T04:58:14.991 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-18T04:58:15.004 INFO:teuthology.task.internal:no buildpackages task found 2026-02-18T04:58:15.004 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-18T04:58:15.017 INFO:teuthology.task.internal:Saving configuration 2026-02-18T04:58:15.030 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-18T04:58:15.041 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-18T04:58:15.103 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial044.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-18 04:54:50.748863', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIqte9lVZKVYYN8ua+uFiF80UFjDBvKC1f2mTpfFKjuDVqKVPhKNLtzU63WrEvnwAmKVS8V15vriEhSIouhVhXc='} 2026-02-18T04:58:15.158 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial080.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-18 04:54:50.749488', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBN2ig1joUVUwbjyYEtAa4Dhq+LW93wXOFpsG94xDBw43x2Omtg12gHdbokxeCea8YrLSTbvFnVku0rrnHnaX2zc='} 2026-02-18T04:58:15.159 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-18T04:58:15.169 INFO:teuthology.task.internal:roles: ubuntu@trial044.front.sepia.ceph.com - ['host.a', 'client.0'] 2026-02-18T04:58:15.169 INFO:teuthology.task.internal:roles: ubuntu@trial080.front.sepia.ceph.com - ['host.b', 'client.1'] 2026-02-18T04:58:15.169 INFO:teuthology.run_tasks:Running task console_log... 2026-02-18T04:58:15.299 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x720ccfae3740>, signals=[15]) 2026-02-18T04:58:15.299 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-18T04:58:15.309 INFO:teuthology.task.internal:Opening connections... 2026-02-18T04:58:15.309 DEBUG:teuthology.task.internal:connecting to ubuntu@trial044.front.sepia.ceph.com 2026-02-18T04:58:15.310 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:58:15.372 DEBUG:teuthology.task.internal:connecting to ubuntu@trial080.front.sepia.ceph.com 2026-02-18T04:58:15.372 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial080.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:58:15.434 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-18T04:58:15.448 DEBUG:teuthology.orchestra.run.trial044:> uname -m 2026-02-18T04:58:15.464 INFO:teuthology.orchestra.run.trial044.stdout:x86_64 2026-02-18T04:58:15.464 DEBUG:teuthology.orchestra.run.trial044:> cat /etc/os-release 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:NAME="CentOS Stream" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:VERSION="9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:ID="centos" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:ID_LIKE="rhel fedora" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:VERSION_ID="9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:PLATFORM_ID="platform:el9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:ANSI_COLOR="0;31" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:LOGO="fedora-logo-icon" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:HOME_URL="https://centos.org/" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-18T04:58:15.520 INFO:teuthology.orchestra.run.trial044.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-18T04:58:15.521 INFO:teuthology.lock.ops:Updating trial044.front.sepia.ceph.com on lock server 2026-02-18T04:58:15.593 DEBUG:teuthology.orchestra.run.trial080:> uname -m 2026-02-18T04:58:15.608 INFO:teuthology.orchestra.run.trial080.stdout:x86_64 2026-02-18T04:58:15.608 DEBUG:teuthology.orchestra.run.trial080:> cat /etc/os-release 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:NAME="CentOS Stream" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:VERSION="9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:ID="centos" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:ID_LIKE="rhel fedora" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:VERSION_ID="9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:PLATFORM_ID="platform:el9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:ANSI_COLOR="0;31" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:LOGO="fedora-logo-icon" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:HOME_URL="https://centos.org/" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-18T04:58:15.665 INFO:teuthology.orchestra.run.trial080.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-18T04:58:15.666 INFO:teuthology.lock.ops:Updating trial080.front.sepia.ceph.com on lock server 2026-02-18T04:58:15.742 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-18T04:58:15.754 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-18T04:58:15.765 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-18T04:58:15.766 DEBUG:teuthology.orchestra.run.trial044:> test '!' -e /home/ubuntu/cephtest 2026-02-18T04:58:15.768 DEBUG:teuthology.orchestra.run.trial080:> test '!' -e /home/ubuntu/cephtest 2026-02-18T04:58:15.783 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-18T04:58:15.793 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-18T04:58:15.793 DEBUG:teuthology.orchestra.run.trial044:> test -z $(ls -A /var/lib/ceph) 2026-02-18T04:58:15.824 DEBUG:teuthology.orchestra.run.trial080:> test -z $(ls -A /var/lib/ceph) 2026-02-18T04:58:15.840 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-18T04:58:16.009 INFO:teuthology.run_tasks:Running task kernel... 2026-02-18T04:58:16.029 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-18T04:58:16.029 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}}, timeout 300 2026-02-18T04:58:16.029 DEBUG:teuthology.orchestra.run.trial044:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-18T04:58:16.030 DEBUG:teuthology.orchestra.run.trial080:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-18T04:58:16.045 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:58:16.045 DEBUG:teuthology.orchestra.run.trial044:> uname -r 2026-02-18T04:58:16.045 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T04:58:16.045 DEBUG:teuthology.orchestra.run.trial080:> uname -r 2026-02-18T04:58:16.101 INFO:teuthology.orchestra.run.trial044.stdout:5.14.0-645.el9.x86_64 2026-02-18T04:58:16.102 INFO:teuthology.task.kernel:Running kernel on trial044: 5.14.0-645.el9.x86_64 2026-02-18T04:58:16.102 DEBUG:teuthology.orchestra.run.trial044:> sudo yum install -y kernel 2026-02-18T04:58:16.103 INFO:teuthology.orchestra.run.trial080.stdout:5.14.0-645.el9.x86_64 2026-02-18T04:58:16.103 INFO:teuthology.task.kernel:Running kernel on trial080: 5.14.0-645.el9.x86_64 2026-02-18T04:58:16.103 DEBUG:teuthology.orchestra.run.trial080:> sudo yum install -y kernel 2026-02-18T04:58:17.469 INFO:teuthology.orchestra.run.trial080.stdout:CentOS Stream 9 - BaseOS 8.9 MB/s | 8.9 MB 00:00 2026-02-18T04:58:18.224 INFO:teuthology.orchestra.run.trial044.stdout:CentOS Stream 9 - BaseOS 5.1 MB/s | 8.9 MB 00:01 2026-02-18T04:58:20.595 INFO:teuthology.orchestra.run.trial080.stdout:CentOS Stream 9 - AppStream 10 MB/s | 27 MB 00:02 2026-02-18T04:58:21.235 INFO:teuthology.orchestra.run.trial044.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-18T04:58:23.870 INFO:teuthology.orchestra.run.trial080.stdout:CentOS Stream 9 - CRB 8.7 MB/s | 7.8 MB 00:00 2026-02-18T04:58:24.537 INFO:teuthology.orchestra.run.trial044.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 7.8 MB 00:00 2026-02-18T04:58:25.437 INFO:teuthology.orchestra.run.trial044.stdout:CentOS Stream 9 - Extras packages 118 kB/s | 20 kB 00:00 2026-02-18T04:58:25.465 INFO:teuthology.orchestra.run.trial080.stdout:CentOS Stream 9 - Extras packages 23 kB/s | 20 kB 00:00 2026-02-18T04:58:26.095 INFO:teuthology.orchestra.run.trial080.stdout:Extra Packages for Enterprise Linux 36 MB/s | 20 MB 00:00 2026-02-18T04:58:26.102 INFO:teuthology.orchestra.run.trial044.stdout:Extra Packages for Enterprise Linux 34 MB/s | 20 MB 00:00 2026-02-18T04:58:29.273 INFO:teuthology.orchestra.run.trial044.stdout:lab-extras 1.4 MB/s | 50 kB 00:00 2026-02-18T04:58:29.274 INFO:teuthology.orchestra.run.trial080.stdout:lab-extras 1.1 MB/s | 50 kB 00:00 2026-02-18T04:58:30.281 INFO:teuthology.orchestra.run.trial044.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-18T04:58:30.283 INFO:teuthology.orchestra.run.trial080.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-18T04:58:30.303 INFO:teuthology.orchestra.run.trial044.stdout:Dependencies resolved. 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: Package Architecture Version Repository Size 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:Installing: 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:Installing dependencies: 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: kernel-core x86_64 5.14.0-681.el9 baseos 17 M 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: kernel-modules x86_64 5.14.0-681.el9 baseos 40 M 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: kernel-modules-core x86_64 5.14.0-681.el9 baseos 31 M 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:Transaction Summary 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:Install 4 Packages 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:58:30.304 INFO:teuthology.orchestra.run.trial044.stdout:Total download size: 88 M 2026-02-18T04:58:30.305 INFO:teuthology.orchestra.run.trial044.stdout:Installed size: 135 M 2026-02-18T04:58:30.305 INFO:teuthology.orchestra.run.trial044.stdout:Downloading Packages: 2026-02-18T04:58:30.305 INFO:teuthology.orchestra.run.trial080.stdout:Dependencies resolved. 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: Package Architecture Version Repository Size 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Installing: 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Installing dependencies: 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: kernel-core x86_64 5.14.0-681.el9 baseos 17 M 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: kernel-modules x86_64 5.14.0-681.el9 baseos 40 M 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: kernel-modules-core x86_64 5.14.0-681.el9 baseos 31 M 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Transaction Summary 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Install 4 Packages 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Total download size: 88 M 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Installed size: 135 M 2026-02-18T04:58:30.306 INFO:teuthology.orchestra.run.trial080.stdout:Downloading Packages: 2026-02-18T04:58:30.519 INFO:teuthology.orchestra.run.trial080.stdout:(1/4): kernel-5.14.0-681.el9.x86_64.rpm 5.3 MB/s | 803 kB 00:00 2026-02-18T04:58:30.792 INFO:teuthology.orchestra.run.trial080.stdout:(2/4): kernel-core-5.14.0-681.el9.x86_64.rpm 40 MB/s | 17 MB 00:00 2026-02-18T04:58:30.937 INFO:teuthology.orchestra.run.trial080.stdout:(3/4): kernel-modules-core-5.14.0-681.el9.x86_6 74 MB/s | 31 MB 00:00 2026-02-18T04:58:31.212 INFO:teuthology.orchestra.run.trial080.stdout:(4/4): kernel-modules-5.14.0-681.el9.x86_64.rpm 47 MB/s | 40 MB 00:00 2026-02-18T04:58:31.212 INFO:teuthology.orchestra.run.trial080.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:58:31.212 INFO:teuthology.orchestra.run.trial080.stdout:Total 97 MB/s | 88 MB 00:00 2026-02-18T04:58:31.400 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction check 2026-02-18T04:58:31.599 INFO:teuthology.orchestra.run.trial080.stdout:Transaction check succeeded. 2026-02-18T04:58:31.599 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction test 2026-02-18T04:58:31.786 INFO:teuthology.orchestra.run.trial044.stdout:(1/4): kernel-5.14.0-681.el9.x86_64.rpm 568 kB/s | 803 kB 00:01 2026-02-18T04:58:31.943 INFO:teuthology.orchestra.run.trial080.stdout:Transaction test succeeded. 2026-02-18T04:58:31.944 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction 2026-02-18T04:58:32.207 INFO:teuthology.orchestra.run.trial044.stdout:(2/4): kernel-core-5.14.0-681.el9.x86_64.rpm 9.3 MB/s | 17 MB 00:01 2026-02-18T04:58:33.026 INFO:teuthology.orchestra.run.trial080.stdout: Preparing : 1/1 2026-02-18T04:58:33.306 INFO:teuthology.orchestra.run.trial080.stdout: Installing : kernel-modules-core-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:58:33.325 INFO:teuthology.orchestra.run.trial080.stdout: Installing : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:58:33.931 INFO:teuthology.orchestra.run.trial044.stdout:(3/4): kernel-modules-core-5.14.0-681.el9.x86_6 14 MB/s | 31 MB 00:02 2026-02-18T04:58:35.107 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:58:35.135 INFO:teuthology.orchestra.run.trial080.stdout: Installing : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:58:38.155 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:58:38.161 INFO:teuthology.orchestra.run.trial080.stdout: Installing : kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:58:38.747 INFO:teuthology.orchestra.run.trial044.stdout:(4/4): kernel-modules-5.14.0-681.el9.x86_64.rpm 4.7 MB/s | 40 MB 00:08 2026-02-18T04:58:38.749 INFO:teuthology.orchestra.run.trial044.stdout:-------------------------------------------------------------------------------- 2026-02-18T04:58:38.749 INFO:teuthology.orchestra.run.trial044.stdout:Total 10 MB/s | 88 MB 00:08 2026-02-18T04:58:38.942 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction check 2026-02-18T04:58:39.141 INFO:teuthology.orchestra.run.trial044.stdout:Transaction check succeeded. 2026-02-18T04:58:39.142 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction test 2026-02-18T04:58:39.487 INFO:teuthology.orchestra.run.trial044.stdout:Transaction test succeeded. 2026-02-18T04:58:39.487 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction 2026-02-18T04:58:40.567 INFO:teuthology.orchestra.run.trial044.stdout: Preparing : 1/1 2026-02-18T04:58:40.848 INFO:teuthology.orchestra.run.trial044.stdout: Installing : kernel-modules-core-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:58:40.866 INFO:teuthology.orchestra.run.trial044.stdout: Installing : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:58:41.190 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:58:42.644 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:58:42.673 INFO:teuthology.orchestra.run.trial044.stdout: Installing : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:58:45.694 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:58:45.702 INFO:teuthology.orchestra.run.trial044.stdout: Installing : kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:58:48.735 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:11.497 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:11.521 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:11.691 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:11.691 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:59:11.692 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:59:11.692 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:59:11.743 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:11.743 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout:Installed: 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout: kernel-core-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout: kernel-modules-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout: kernel-modules-core-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:59:11.744 INFO:teuthology.orchestra.run.trial080.stdout:Complete! 2026-02-18T04:59:11.804 DEBUG:teuthology.orchestra.run.trial080:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:59:11.830 INFO:teuthology.orchestra.run.trial080.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.831 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:59:11.831 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-645.el9.x86_64 Expected: 5.14.0-681.el9.x86_64 2026-02-18T04:59:11.831 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2026-02-18T04:59:11.831 DEBUG:teuthology.task.kernel:src is distro, skipping download 2026-02-18T04:59:11.831 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2026-02-18T04:59:11.831 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@trial080.front.sepia.ceph.com, path=None, version=distro) 2026-02-18T04:59:11.832 DEBUG:teuthology.orchestra.run.trial080:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:59:11.894 INFO:teuthology.orchestra.run.trial080.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:11.895 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:59:11.895 DEBUG:teuthology.orchestra.run.trial080:> sudo rpm -qi grub2-tools 2026-02-18T04:59:11.962 INFO:teuthology.orchestra.run.trial080.stdout:Name : grub2-tools 2026-02-18T04:59:11.962 INFO:teuthology.orchestra.run.trial080.stdout:Epoch : 1 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Version : 2.06 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Release : 118.el9 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Architecture: x86_64 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Install Date: Thu 04 Dec 2025 11:54:21 PM UTC 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Group : Unspecified 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Size : 8393909 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:License : GPLv3+ 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Signature : RSA/SHA256, Wed 05 Nov 2025 09:13:15 AM UTC, Key ID 05b555b38483c65d 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Source RPM : grub2-2.06-118.el9.src.rpm 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Build Date : Tue 04 Nov 2025 03:44:14 PM UTC 2026-02-18T04:59:11.963 INFO:teuthology.orchestra.run.trial080.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:Packager : builder@centos.org 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:Vendor : CentOS 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:URL : http://www.gnu.org/software/grub/ 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:Summary : Support tools for GRUB. 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:Description : 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:customizable bootloader with modular architecture. It supports a rich 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:variety of kernel formats, file systems, computer architectures and 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:hardware devices. 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T04:59:11.964 INFO:teuthology.orchestra.run.trial080.stdout:This subpackage provides tools for support of all platforms. 2026-02-18T04:59:11.965 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2026-02-18T04:59:11.966 INFO:teuthology.task.kernel:Updating grub on trial080 to boot 5.14.0-681.el9.x86_64 2026-02-18T04:59:11.966 DEBUG:teuthology.orchestra.run.trial080:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f -print -quit 2026-02-18T04:59:12.029 INFO:teuthology.orchestra.run.trial080.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:59:12.030 DEBUG:teuthology.orchestra.run.trial080:> sudo command -v grubby && echo yes || echo no 2026-02-18T04:59:12.093 INFO:teuthology.orchestra.run.trial080.stdout:/sbin/grubby 2026-02-18T04:59:12.095 INFO:teuthology.orchestra.run.trial080.stdout:yes 2026-02-18T04:59:12.095 DEBUG:teuthology.orchestra.run.trial080:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f | grep -F "5.14.0-681.el9.x86_64" | head -n 1 2026-02-18T04:59:12.161 INFO:teuthology.orchestra.run.trial080.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:59:12.162 DEBUG:teuthology.orchestra.run.trial080:> sudo grub2-set-default b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64 2026-02-18T04:59:12.238 DEBUG:teuthology.orchestra.run.trial080:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2026-02-18T04:59:12.443 INFO:teuthology.orchestra.run.trial080.stderr:Generating grub configuration file ... 2026-02-18T04:59:12.506 INFO:teuthology.orchestra.run.trial080.stderr:Found linux image: /boot/vmlinuz-5.14.0-681.el9.x86_64 2026-02-18T04:59:12.512 INFO:teuthology.orchestra.run.trial080.stderr:Found initrd image: /boot/initramfs-5.14.0-681.el9.x86_64.img 2026-02-18T04:59:12.761 INFO:teuthology.orchestra.run.trial080.stderr:Found linux image: /boot/vmlinuz-5.14.0-645.el9.x86_64 2026-02-18T04:59:12.767 INFO:teuthology.orchestra.run.trial080.stderr:Found initrd image: /boot/initramfs-5.14.0-645.el9.x86_64.img 2026-02-18T04:59:12.799 INFO:teuthology.orchestra.run.trial080.stderr:Found linux image: /boot/vmlinuz-0-rescue-b0373be789df49cdafedf423703d2566 2026-02-18T04:59:12.805 INFO:teuthology.orchestra.run.trial080.stderr:Found initrd image: /boot/initramfs-0-rescue-b0373be789df49cdafedf423703d2566.img 2026-02-18T04:59:12.829 INFO:teuthology.orchestra.run.trial080.stderr:Found linux image: /boot/vmlinuz-0-rescue-2734456005d743dca7f3dc77c35a2d0d 2026-02-18T04:59:12.835 INFO:teuthology.orchestra.run.trial080.stderr:Found initrd image: /boot/initramfs-0-rescue-2734456005d743dca7f3dc77c35a2d0d.img 2026-02-18T04:59:12.916 INFO:teuthology.orchestra.run.trial080.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2026-02-18T04:59:12.925 INFO:teuthology.orchestra.run.trial080.stderr:done 2026-02-18T04:59:12.927 DEBUG:teuthology.orchestra.run.trial080:> test -d /sys/firmware/efi 2026-02-18T04:59:12.943 DEBUG:teuthology.orchestra.run.trial080:> sudo find /boot/efi/EFI -mindepth 1 -maxdepth 1 -type d || true 2026-02-18T04:59:13.008 INFO:teuthology.orchestra.run.trial080.stdout:/boot/efi/EFI/BOOT 2026-02-18T04:59:13.008 INFO:teuthology.orchestra.run.trial080.stdout:/boot/efi/EFI/centos 2026-02-18T04:59:13.010 DEBUG:teuthology.orchestra.run.trial080:> sudo test -f /boot/efi/EFI/BOOT/grub.cfg && echo yes || echo no 2026-02-18T04:59:13.075 INFO:teuthology.orchestra.run.trial080.stdout:no 2026-02-18T04:59:13.075 DEBUG:teuthology.orchestra.run.trial080:> sudo test -f /boot/efi/EFI/centos/grub.cfg && echo yes || echo no 2026-02-18T04:59:13.139 INFO:teuthology.orchestra.run.trial080.stdout:yes 2026-02-18T04:59:13.139 DEBUG:teuthology.orchestra.run.trial080:> sudo cp -f /boot/grub2/grub.cfg /boot/efi/EFI/centos/grub.cfg 2026-02-18T04:59:13.204 INFO:teuthology.orchestra.remote:Triggering safe hard reboot via SysRq on trial080 2026-02-18T04:59:13.205 DEBUG:teuthology.orchestra.run.trial080:> sudo bash -c ' 2026-02-18T04:59:13.205 DEBUG:teuthology.orchestra.run.trial080:> echo pci > /sys/kernel/reboot/type && echo 1 > /sys/kernel/reboot/force && sync && echo s > /proc/sysrq-trigger && echo u > /proc/sysrq-trigger && sleep 2 && echo b > /proc/sysrq-trigger 2026-02-18T04:59:13.205 DEBUG:teuthology.orchestra.run.trial080:> ' 2026-02-18T04:59:19.508 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:19.530 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-modules-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:19.594 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:19.594 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/4 2026-02-18T04:59:19.594 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : kernel-core-5.14.0-681.el9.x86_64 2/4 2026-02-18T04:59:19.594 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : kernel-modules-5.14.0-681.el9.x86_64 3/4 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : kernel-modules-core-5.14.0-681.el9.x86_64 4/4 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout:Installed: 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: kernel-core-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: kernel-modules-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: kernel-modules-core-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:59:19.646 INFO:teuthology.orchestra.run.trial044.stdout:Complete! 2026-02-18T04:59:19.704 DEBUG:teuthology.orchestra.run.trial044:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:59:19.730 INFO:teuthology.orchestra.run.trial044.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.731 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:59:19.731 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-645.el9.x86_64 Expected: 5.14.0-681.el9.x86_64 2026-02-18T04:59:19.731 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2026-02-18T04:59:19.731 DEBUG:teuthology.task.kernel:src is distro, skipping download 2026-02-18T04:59:19.731 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2026-02-18T04:59:19.731 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@trial044.front.sepia.ceph.com, path=None, version=distro) 2026-02-18T04:59:19.731 DEBUG:teuthology.orchestra.run.trial044:> rpm -q kernel | sort -rV | head -n 1 2026-02-18T04:59:19.793 INFO:teuthology.orchestra.run.trial044.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-18T04:59:19.794 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-18T04:59:19.794 DEBUG:teuthology.orchestra.run.trial044:> sudo rpm -qi grub2-tools 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Name : grub2-tools 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Epoch : 1 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Version : 2.06 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Release : 118.el9 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Architecture: x86_64 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Install Date: Thu 04 Dec 2025 11:54:21 PM UTC 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Group : Unspecified 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Size : 8393909 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:License : GPLv3+ 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Signature : RSA/SHA256, Wed 05 Nov 2025 09:13:15 AM UTC, Key ID 05b555b38483c65d 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Source RPM : grub2-2.06-118.el9.src.rpm 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Build Date : Tue 04 Nov 2025 03:44:14 PM UTC 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Packager : builder@centos.org 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Vendor : CentOS 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:URL : http://www.gnu.org/software/grub/ 2026-02-18T04:59:19.868 INFO:teuthology.orchestra.run.trial044.stdout:Summary : Support tools for GRUB. 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:Description : 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:customizable bootloader with modular architecture. It supports a rich 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:variety of kernel formats, file systems, computer architectures and 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:hardware devices. 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T04:59:19.869 INFO:teuthology.orchestra.run.trial044.stdout:This subpackage provides tools for support of all platforms. 2026-02-18T04:59:19.870 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2026-02-18T04:59:19.870 INFO:teuthology.task.kernel:Updating grub on trial044 to boot 5.14.0-681.el9.x86_64 2026-02-18T04:59:19.870 DEBUG:teuthology.orchestra.run.trial044:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f -print -quit 2026-02-18T04:59:19.937 INFO:teuthology.orchestra.run.trial044.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:59:19.939 DEBUG:teuthology.orchestra.run.trial044:> sudo command -v grubby && echo yes || echo no 2026-02-18T04:59:20.003 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/grubby 2026-02-18T04:59:20.003 INFO:teuthology.orchestra.run.trial044.stdout:yes 2026-02-18T04:59:20.004 DEBUG:teuthology.orchestra.run.trial044:> sudo find /boot/loader/entries -maxdepth 1 -name "*.conf" -type f | grep -F "5.14.0-681.el9.x86_64" | head -n 1 2026-02-18T04:59:20.068 INFO:teuthology.orchestra.run.trial044.stdout:/boot/loader/entries/b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64.conf 2026-02-18T04:59:20.069 DEBUG:teuthology.orchestra.run.trial044:> sudo grub2-set-default b0373be789df49cdafedf423703d2566-5.14.0-681.el9.x86_64 2026-02-18T04:59:20.143 DEBUG:teuthology.orchestra.run.trial044:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2026-02-18T04:59:20.351 INFO:teuthology.orchestra.run.trial044.stderr:Generating grub configuration file ... 2026-02-18T04:59:20.414 INFO:teuthology.orchestra.run.trial044.stderr:Found linux image: /boot/vmlinuz-5.14.0-681.el9.x86_64 2026-02-18T04:59:20.421 INFO:teuthology.orchestra.run.trial044.stderr:Found initrd image: /boot/initramfs-5.14.0-681.el9.x86_64.img 2026-02-18T04:59:20.678 INFO:teuthology.orchestra.run.trial044.stderr:Found linux image: /boot/vmlinuz-5.14.0-645.el9.x86_64 2026-02-18T04:59:20.685 INFO:teuthology.orchestra.run.trial044.stderr:Found initrd image: /boot/initramfs-5.14.0-645.el9.x86_64.img 2026-02-18T04:59:20.717 INFO:teuthology.orchestra.run.trial044.stderr:Found linux image: /boot/vmlinuz-0-rescue-b0373be789df49cdafedf423703d2566 2026-02-18T04:59:20.724 INFO:teuthology.orchestra.run.trial044.stderr:Found initrd image: /boot/initramfs-0-rescue-b0373be789df49cdafedf423703d2566.img 2026-02-18T04:59:20.748 INFO:teuthology.orchestra.run.trial044.stderr:Found linux image: /boot/vmlinuz-0-rescue-2734456005d743dca7f3dc77c35a2d0d 2026-02-18T04:59:20.754 INFO:teuthology.orchestra.run.trial044.stderr:Found initrd image: /boot/initramfs-0-rescue-2734456005d743dca7f3dc77c35a2d0d.img 2026-02-18T04:59:20.836 INFO:teuthology.orchestra.run.trial044.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2026-02-18T04:59:20.845 INFO:teuthology.orchestra.run.trial044.stderr:done 2026-02-18T04:59:20.847 DEBUG:teuthology.orchestra.run.trial044:> test -d /sys/firmware/efi 2026-02-18T04:59:20.864 DEBUG:teuthology.orchestra.run.trial044:> sudo find /boot/efi/EFI -mindepth 1 -maxdepth 1 -type d || true 2026-02-18T04:59:20.928 INFO:teuthology.orchestra.run.trial044.stdout:/boot/efi/EFI/BOOT 2026-02-18T04:59:20.928 INFO:teuthology.orchestra.run.trial044.stdout:/boot/efi/EFI/centos 2026-02-18T04:59:20.930 DEBUG:teuthology.orchestra.run.trial044:> sudo test -f /boot/efi/EFI/BOOT/grub.cfg && echo yes || echo no 2026-02-18T04:59:20.995 INFO:teuthology.orchestra.run.trial044.stdout:no 2026-02-18T04:59:20.996 DEBUG:teuthology.orchestra.run.trial044:> sudo test -f /boot/efi/EFI/centos/grub.cfg && echo yes || echo no 2026-02-18T04:59:21.059 INFO:teuthology.orchestra.run.trial044.stdout:yes 2026-02-18T04:59:21.060 DEBUG:teuthology.orchestra.run.trial044:> sudo cp -f /boot/grub2/grub.cfg /boot/efi/EFI/centos/grub.cfg 2026-02-18T04:59:21.125 INFO:teuthology.orchestra.remote:Triggering safe hard reboot via SysRq on trial044 2026-02-18T04:59:21.125 DEBUG:teuthology.orchestra.run.trial044:> sudo bash -c ' 2026-02-18T04:59:21.126 DEBUG:teuthology.orchestra.run.trial044:> echo pci > /sys/kernel/reboot/type && echo 1 > /sys/kernel/reboot/force && sync && echo s > /proc/sysrq-trigger && echo u > /proc/sysrq-trigger && sleep 2 && echo b > /proc/sysrq-trigger 2026-02-18T04:59:21.126 DEBUG:teuthology.orchestra.run.trial044:> ' 2026-02-18T04:59:43.247 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2026-02-18T04:59:43.248 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial080.front.sepia.ceph.com' 2026-02-18T04:59:43.249 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial080.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:59:51.168 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2026-02-18T04:59:51.169 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial044.front.sepia.ceph.com' 2026-02-18T04:59:51.170 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T04:59:57.504 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 10.20.193.80 2026-02-18T05:00:05.440 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 10.20.193.44 2026-02-18T05:00:06.505 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial080.front.sepia.ceph.com' 2026-02-18T05:00:06.506 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial080.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T05:00:14.448 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial044.front.sepia.ceph.com' 2026-02-18T05:00:14.449 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T05:00:42.344 DEBUG:teuthology.orchestra.run.trial080:> true 2026-02-18T05:00:42.503 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial080.front.sepia.ceph.com' 2026-02-18T05:00:42.503 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-681.el9.x86_64"... 2026-02-18T05:00:42.503 DEBUG:teuthology.orchestra.run.trial080:> uname -r 2026-02-18T05:00:42.558 INFO:teuthology.orchestra.run.trial080.stdout:5.14.0-681.el9.x86_64 2026-02-18T05:00:42.558 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-681.el9.x86_64 vs 5.14.0-681.el9.x86_64 2026-02-18T05:00:42.559 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2026-02-18T05:00:42.559 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2026-02-18T05:00:43.560 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-18T05:00:43.560 DEBUG:teuthology.orchestra.run.trial080:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-18T05:00:43.590 INFO:teuthology.orchestra.run.trial080.stdout:ttyS1 2026-02-18T05:00:43.617 DEBUG:teuthology.parallel:result is None 2026-02-18T05:00:50.568 DEBUG:teuthology.orchestra.run.trial044:> true 2026-02-18T05:00:50.719 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial044.front.sepia.ceph.com' 2026-02-18T05:00:50.720 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-681.el9.x86_64"... 2026-02-18T05:00:50.721 DEBUG:teuthology.orchestra.run.trial044:> uname -r 2026-02-18T05:00:50.777 INFO:teuthology.orchestra.run.trial044.stdout:5.14.0-681.el9.x86_64 2026-02-18T05:00:50.778 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-681.el9.x86_64 vs 5.14.0-681.el9.x86_64 2026-02-18T05:00:50.778 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2026-02-18T05:00:50.778 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2026-02-18T05:00:51.780 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-18T05:00:51.780 DEBUG:teuthology.orchestra.run.trial044:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-18T05:00:51.809 INFO:teuthology.orchestra.run.trial044.stdout:ttyS1 2026-02-18T05:00:51.836 DEBUG:teuthology.parallel:result is None 2026-02-18T05:00:51.836 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-18T05:00:51.849 INFO:teuthology.task.internal:Creating test directory... 2026-02-18T05:00:51.849 DEBUG:teuthology.orchestra.run.trial044:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-18T05:00:51.878 DEBUG:teuthology.orchestra.run.trial080:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-18T05:00:51.896 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-18T05:00:51.908 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-18T05:00:51.922 INFO:teuthology.task.internal:Creating archive directory... 2026-02-18T05:00:51.922 DEBUG:teuthology.orchestra.run.trial044:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-18T05:00:51.934 DEBUG:teuthology.orchestra.run.trial080:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-18T05:00:51.961 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-18T05:00:51.973 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-18T05:00:51.973 DEBUG:teuthology.orchestra.run.trial044:> 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 2026-02-18T05:00:51.991 DEBUG:teuthology.orchestra.run.trial080:> 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 2026-02-18T05:00:52.012 INFO:teuthology.orchestra.run.trial044.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T05:00:52.019 INFO:teuthology.orchestra.run.trial080.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T05:00:52.021 INFO:teuthology.orchestra.run.trial044.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T05:00:52.027 INFO:teuthology.orchestra.run.trial080.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-18T05:00:52.029 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-18T05:00:52.041 INFO:teuthology.task.internal:Configuring sudo... 2026-02-18T05:00:52.041 DEBUG:teuthology.orchestra.run.trial044:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-18T05:00:52.065 DEBUG:teuthology.orchestra.run.trial080:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-18T05:00:52.094 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-18T05:00:52.113 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-18T05:00:52.114 DEBUG:teuthology.orchestra.run.trial044:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-18T05:00:52.129 DEBUG:teuthology.orchestra.run.trial080:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-18T05:00:52.151 DEBUG:teuthology.orchestra.run.trial044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:00:52.307 DEBUG:teuthology.orchestra.run.trial044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:00:52.333 DEBUG:teuthology.orchestra.run.trial044:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:00:52.482 DEBUG:teuthology.orchestra.run.trial044:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:00:52.504 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:00:52.504 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-18T05:00:52.570 DEBUG:teuthology.orchestra.run.trial080:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:00:52.688 DEBUG:teuthology.orchestra.run.trial080:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:00:52.712 DEBUG:teuthology.orchestra.run.trial080:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:00:52.861 DEBUG:teuthology.orchestra.run.trial080:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:00:52.885 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:00:52.885 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-18T05:00:52.947 DEBUG:teuthology.orchestra.run.trial044:> sudo service rsyslog restart 2026-02-18T05:00:52.950 DEBUG:teuthology.orchestra.run.trial080:> sudo service rsyslog restart 2026-02-18T05:00:52.977 INFO:teuthology.orchestra.run.trial044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T05:00:53.014 INFO:teuthology.orchestra.run.trial080.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T05:00:53.457 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-18T05:00:53.471 INFO:teuthology.task.internal:Starting timer... 2026-02-18T05:00:53.471 INFO:teuthology.run_tasks:Running task pcp... 2026-02-18T05:00:53.494 INFO:teuthology.run_tasks:Running task selinux... 2026-02-18T05:00:53.515 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2026-02-18T05:00:53.515 DEBUG:teuthology.orchestra.run.trial044:> sudo service auditd rotate 2026-02-18T05:00:53.544 INFO:teuthology.orchestra.run.trial044.stdout:Rotating logs: 2026-02-18T05:00:53.545 DEBUG:teuthology.orchestra.run.trial080:> sudo service auditd rotate 2026-02-18T05:00:53.575 INFO:teuthology.orchestra.run.trial080.stdout:Rotating logs: 2026-02-18T05:00:53.577 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-18T05:00:53.577 DEBUG:teuthology.orchestra.run.trial044:> /usr/sbin/getenforce 2026-02-18T05:00:53.602 INFO:teuthology.orchestra.run.trial044.stdout:Permissive 2026-02-18T05:00:53.602 DEBUG:teuthology.orchestra.run.trial080:> /usr/sbin/getenforce 2026-02-18T05:00:53.633 INFO:teuthology.orchestra.run.trial080.stdout:Permissive 2026-02-18T05:00:53.634 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial044.front.sepia.ceph.com': 'permissive', 'ubuntu@trial080.front.sepia.ceph.com': 'permissive'} 2026-02-18T05:00:53.634 DEBUG:teuthology.orchestra.run.trial044:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2026-02-18T05:00:53.666 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:00:53.667 DEBUG:teuthology.orchestra.run.trial080:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2026-02-18T05:00:53.698 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:00:53.699 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-18T05:00:53.699 DEBUG:teuthology.orchestra.run.trial044:> sudo /usr/sbin/setenforce permissive 2026-02-18T05:00:53.731 DEBUG:teuthology.orchestra.run.trial080:> sudo /usr/sbin/setenforce permissive 2026-02-18T05:00:53.764 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-18T05:00:53.779 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-18T05:00:53.789 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'}]}] 2026-02-18T05:00:53.791 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial044.front.sepia.ceph.com,trial080.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-18T05:02:21.186 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial044.front.sepia.ceph.com'), Remote(name='ubuntu@trial080.front.sepia.ceph.com')] 2026-02-18T05:02:21.188 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial044.front.sepia.ceph.com' 2026-02-18T05:02:21.189 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial044.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T05:02:21.300 DEBUG:teuthology.orchestra.run.trial044:> true 2026-02-18T05:02:21.378 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial044.front.sepia.ceph.com' 2026-02-18T05:02:21.378 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial080.front.sepia.ceph.com' 2026-02-18T05:02:21.379 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial080.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-18T05:02:21.466 DEBUG:teuthology.orchestra.run.trial080:> true 2026-02-18T05:02:21.551 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial080.front.sepia.ceph.com' 2026-02-18T05:02:21.551 INFO:teuthology.run_tasks:Running task clock... 2026-02-18T05:02:21.566 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-18T05:02:21.566 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-18T05:02:21.567 DEBUG:teuthology.orchestra.run.trial044:> 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 2026-02-18T05:02:21.569 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-18T05:02:21.569 DEBUG:teuthology.orchestra.run.trial080:> 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 2026-02-18T05:02:21.596 INFO:teuthology.orchestra.run.trial044.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-18T05:02:21.608 INFO:teuthology.orchestra.run.trial044.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-18T05:02:21.620 INFO:teuthology.orchestra.run.trial080.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-18T05:02:21.629 INFO:teuthology.orchestra.run.trial044.stderr:sudo: ntpd: command not found 2026-02-18T05:02:21.632 INFO:teuthology.orchestra.run.trial080.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-18T05:02:21.638 INFO:teuthology.orchestra.run.trial044.stdout:506 Cannot talk to daemon 2026-02-18T05:02:21.650 INFO:teuthology.orchestra.run.trial044.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-18T05:02:21.652 INFO:teuthology.orchestra.run.trial080.stderr:sudo: ntpd: command not found 2026-02-18T05:02:21.662 INFO:teuthology.orchestra.run.trial080.stdout:506 Cannot talk to daemon 2026-02-18T05:02:21.663 INFO:teuthology.orchestra.run.trial044.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-18T05:02:21.673 INFO:teuthology.orchestra.run.trial080.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-18T05:02:21.684 INFO:teuthology.orchestra.run.trial080.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-18T05:02:21.714 INFO:teuthology.orchestra.run.trial044.stderr:bash: line 1: ntpq: command not found 2026-02-18T05:02:21.716 INFO:teuthology.orchestra.run.trial044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T05:02:21.716 INFO:teuthology.orchestra.run.trial044.stdout:=============================================================================== 2026-02-18T05:02:21.730 INFO:teuthology.orchestra.run.trial080.stderr:bash: line 1: ntpq: command not found 2026-02-18T05:02:21.748 INFO:teuthology.orchestra.run.trial080.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T05:02:21.748 INFO:teuthology.orchestra.run.trial080.stdout:=============================================================================== 2026-02-18T05:02:21.748 INFO:teuthology.orchestra.run.trial080.stdout:^? 23.186.168.131 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T05:02:21.748 INFO:teuthology.orchestra.run.trial080.stdout:^? 198.71.50.75 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T05:02:21.748 INFO:teuthology.orchestra.run.trial080.stdout:^? 23-95-35-34-host.colocro> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-18T05:02:21.749 INFO:teuthology.run_tasks:Running task pexec... 2026-02-18T05:02:21.766 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-18T05:02:21.767 DEBUG:teuthology.orchestra.run.trial044:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-18T05:02:21.768 DEBUG:teuthology.orchestra.run.trial080:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-18T05:02:21.771 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:02:21.771 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-18T05:02:21.771 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-18T05:02:21.771 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-18T05:02:21.771 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-18T05:02:21.792 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial080.front.sepia.ceph.com 2026-02-18T05:02:21.793 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-18T05:02:21.793 INFO:teuthology.task.pexec:sudo dnf install runc nvmetcli nvme-cli -y 2026-02-18T05:02:21.793 INFO:teuthology.task.pexec:sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf 2026-02-18T05:02:21.793 INFO:teuthology.task.pexec:sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf 2026-02-18T05:02:21.941 INFO:teuthology.orchestra.run.trial044.stdout:No match for argument: nvme-cli 2026-02-18T05:02:21.942 INFO:teuthology.orchestra.run.trial044.stderr:No packages marked for removal. 2026-02-18T05:02:21.944 INFO:teuthology.orchestra.run.trial044.stdout:Dependencies resolved. 2026-02-18T05:02:21.945 INFO:teuthology.orchestra.run.trial044.stdout:Nothing to do. 2026-02-18T05:02:21.945 INFO:teuthology.orchestra.run.trial044.stdout:Complete! 2026-02-18T05:02:21.964 INFO:teuthology.orchestra.run.trial080.stdout:No match for argument: nvme-cli 2026-02-18T05:02:21.964 INFO:teuthology.orchestra.run.trial080.stderr:No packages marked for removal. 2026-02-18T05:02:21.967 INFO:teuthology.orchestra.run.trial080.stdout:Dependencies resolved. 2026-02-18T05:02:21.967 INFO:teuthology.orchestra.run.trial080.stdout:Nothing to do. 2026-02-18T05:02:21.967 INFO:teuthology.orchestra.run.trial080.stdout:Complete! 2026-02-18T05:02:22.251 INFO:teuthology.orchestra.run.trial044.stdout:Last metadata expiration check: 0:00:47 ago on Wed 18 Feb 2026 05:01:35 AM UTC. 2026-02-18T05:02:22.271 INFO:teuthology.orchestra.run.trial080.stdout:Last metadata expiration check: 0:00:48 ago on Wed 18 Feb 2026 05:01:34 AM UTC. 2026-02-18T05:02:22.334 INFO:teuthology.orchestra.run.trial044.stdout:Dependencies resolved. 2026-02-18T05:02:22.335 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:02:22.335 INFO:teuthology.orchestra.run.trial044.stdout: Package Arch Version Repository Size 2026-02-18T05:02:22.335 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout:Installing: 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout:Upgrading: 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: libnvme x86_64 1.16.1-2.el9 baseos 116 k 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout:Installing dependencies: 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-18T05:02:22.336 INFO:teuthology.orchestra.run.trial044.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout:Transaction Summary 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout:Install 7 Packages 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout:Upgrade 1 Package 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:22.337 INFO:teuthology.orchestra.run.trial044.stdout:Total download size: 6.4 M 2026-02-18T05:02:22.338 INFO:teuthology.orchestra.run.trial044.stdout:Downloading Packages: 2026-02-18T05:02:22.356 INFO:teuthology.orchestra.run.trial080.stdout:Dependencies resolved. 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: Package Arch Version Repository Size 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout:Installing: 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: runc x86_64 4:1.4.0-1.el9 appstream 4.0 M 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout:Upgrading: 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: libnvme x86_64 1.16.1-2.el9 baseos 116 k 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout:Installing dependencies: 2026-02-18T05:02:22.357 INFO:teuthology.orchestra.run.trial080.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout:Transaction Summary 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout:================================================================================ 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout:Install 7 Packages 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout:Upgrade 1 Package 2026-02-18T05:02:22.358 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:02:22.359 INFO:teuthology.orchestra.run.trial080.stdout:Total download size: 6.4 M 2026-02-18T05:02:22.359 INFO:teuthology.orchestra.run.trial080.stdout:Downloading Packages: 2026-02-18T05:02:22.545 INFO:teuthology.orchestra.run.trial080.stdout:(1/8): nvmetcli-0.8-3.el9.noarch.rpm 1.3 MB/s | 44 kB 00:00 2026-02-18T05:02:22.546 INFO:teuthology.orchestra.run.trial080.stdout:(2/8): python3-configshell-1.1.30-1.el9.noarch. 2.1 MB/s | 72 kB 00:00 2026-02-18T05:02:22.562 INFO:teuthology.orchestra.run.trial080.stdout:(3/8): python3-kmod-0.9-32.el9.x86_64.rpm 4.9 MB/s | 84 kB 00:00 2026-02-18T05:02:22.566 INFO:teuthology.orchestra.run.trial080.stdout:(4/8): python3-pyparsing-2.4.7-9.el9.noarch.rpm 7.4 MB/s | 150 kB 00:00 2026-02-18T05:02:22.582 INFO:teuthology.orchestra.run.trial080.stdout:(5/8): nvme-cli-2.16-1.el9.x86_64.rpm 17 MB/s | 1.2 MB 00:00 2026-02-18T05:02:22.591 INFO:teuthology.orchestra.run.trial080.stdout:(6/8): python3-urwid-2.1.2-4.el9.x86_64.rpm 28 MB/s | 837 kB 00:00 2026-02-18T05:02:22.594 INFO:teuthology.orchestra.run.trial080.stdout:(7/8): libnvme-1.16.1-2.el9.x86_64.rpm 9.4 MB/s | 116 kB 00:00 2026-02-18T05:02:22.723 INFO:teuthology.orchestra.run.trial044.stdout:(1/8): nvmetcli-0.8-3.el9.noarch.rpm 202 kB/s | 44 kB 00:00 2026-02-18T05:02:22.728 INFO:teuthology.orchestra.run.trial044.stdout:(2/8): python3-configshell-1.1.30-1.el9.noarch. 322 kB/s | 72 kB 00:00 2026-02-18T05:02:22.952 INFO:teuthology.orchestra.run.trial044.stdout:(3/8): python3-kmod-0.9-32.el9.x86_64.rpm 367 kB/s | 84 kB 00:00 2026-02-18T05:02:23.000 INFO:teuthology.orchestra.run.trial044.stdout:(4/8): python3-pyparsing-2.4.7-9.el9.noarch.rpm 555 kB/s | 150 kB 00:00 2026-02-18T05:02:23.330 INFO:teuthology.orchestra.run.trial044.stdout:(5/8): nvme-cli-2.16-1.el9.x86_64.rpm 1.4 MB/s | 1.2 MB 00:00 2026-02-18T05:02:23.385 INFO:teuthology.orchestra.run.trial080.stdout:(8/8): runc-1.4.0-1.el9.x86_64.rpm 4.8 MB/s | 4.0 MB 00:00 2026-02-18T05:02:23.385 INFO:teuthology.orchestra.run.trial080.stdout:-------------------------------------------------------------------------------- 2026-02-18T05:02:23.385 INFO:teuthology.orchestra.run.trial080.stdout:Total 6.2 MB/s | 6.4 MB 00:01 2026-02-18T05:02:23.459 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction check 2026-02-18T05:02:23.467 INFO:teuthology.orchestra.run.trial080.stdout:Transaction check succeeded. 2026-02-18T05:02:23.467 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction test 2026-02-18T05:02:23.544 INFO:teuthology.orchestra.run.trial080.stdout:Transaction test succeeded. 2026-02-18T05:02:23.544 INFO:teuthology.orchestra.run.trial080.stdout:Running transaction 2026-02-18T05:02:23.562 INFO:teuthology.orchestra.run.trial044.stdout:(6/8): libnvme-1.16.1-2.el9.x86_64.rpm 501 kB/s | 116 kB 00:00 2026-02-18T05:02:23.597 INFO:teuthology.orchestra.run.trial044.stdout:(7/8): python3-urwid-2.1.2-4.el9.x86_64.rpm 1.3 MB/s | 837 kB 00:00 2026-02-18T05:02:23.628 INFO:teuthology.orchestra.run.trial080.stdout: Preparing : 1/1 2026-02-18T05:02:23.695 INFO:teuthology.orchestra.run.trial080.stdout: Upgrading : libnvme-1.16.1-2.el9.x86_64 1/9 2026-02-18T05:02:23.702 INFO:teuthology.orchestra.run.trial080.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/9 2026-02-18T05:02:23.710 INFO:teuthology.orchestra.run.trial080.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 3/9 2026-02-18T05:02:23.716 INFO:teuthology.orchestra.run.trial080.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 4/9 2026-02-18T05:02:23.722 INFO:teuthology.orchestra.run.trial080.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 5/9 2026-02-18T05:02:23.722 INFO:teuthology.orchestra.run.trial080.stdout: Installing : nvmetcli-0.8-3.el9.noarch 6/9 2026-02-18T05:02:23.850 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 6/9 2026-02-18T05:02:23.852 INFO:teuthology.orchestra.run.trial080.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/9 2026-02-18T05:02:24.135 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/9 2026-02-18T05:02:24.135 INFO:teuthology.orchestra.run.trial080.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-18T05:02:24.135 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:02:24.172 INFO:teuthology.orchestra.run.trial080.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 8/9 2026-02-18T05:02:24.188 INFO:teuthology.orchestra.run.trial080.stdout: Cleanup : libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:24.411 INFO:teuthology.orchestra.run.trial080.stdout: Running scriptlet: libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/9 2026-02-18T05:02:24.412 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : libnvme-1.16.1-2.el9.x86_64 8/9 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout: Verifying : libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout:Upgraded: 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout: libnvme-1.16.1-2.el9.x86_64 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout:Installed: 2026-02-18T05:02:24.465 INFO:teuthology.orchestra.run.trial080.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-18T05:02:24.466 INFO:teuthology.orchestra.run.trial080.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-18T05:02:24.466 INFO:teuthology.orchestra.run.trial080.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-18T05:02:24.466 INFO:teuthology.orchestra.run.trial080.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-18T05:02:24.466 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:02:24.466 INFO:teuthology.orchestra.run.trial080.stdout:Complete! 2026-02-18T05:02:24.467 INFO:teuthology.orchestra.run.trial044.stdout:(8/8): runc-1.4.0-1.el9.x86_64.rpm 2.7 MB/s | 4.0 MB 00:01 2026-02-18T05:02:24.467 INFO:teuthology.orchestra.run.trial044.stdout:-------------------------------------------------------------------------------- 2026-02-18T05:02:24.467 INFO:teuthology.orchestra.run.trial044.stdout:Total 3.0 MB/s | 6.4 MB 00:02 2026-02-18T05:02:24.518 DEBUG:teuthology.parallel:result is None 2026-02-18T05:02:24.545 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction check 2026-02-18T05:02:24.553 INFO:teuthology.orchestra.run.trial044.stdout:Transaction check succeeded. 2026-02-18T05:02:24.554 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction test 2026-02-18T05:02:24.631 INFO:teuthology.orchestra.run.trial044.stdout:Transaction test succeeded. 2026-02-18T05:02:24.631 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction 2026-02-18T05:02:24.715 INFO:teuthology.orchestra.run.trial044.stdout: Preparing : 1/1 2026-02-18T05:02:24.782 INFO:teuthology.orchestra.run.trial044.stdout: Upgrading : libnvme-1.16.1-2.el9.x86_64 1/9 2026-02-18T05:02:24.789 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 2/9 2026-02-18T05:02:24.798 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 3/9 2026-02-18T05:02:24.804 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 4/9 2026-02-18T05:02:24.809 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 5/9 2026-02-18T05:02:24.810 INFO:teuthology.orchestra.run.trial044.stdout: Installing : nvmetcli-0.8-3.el9.noarch 6/9 2026-02-18T05:02:24.940 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 6/9 2026-02-18T05:02:24.942 INFO:teuthology.orchestra.run.trial044.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 7/9 2026-02-18T05:02:25.222 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 7/9 2026-02-18T05:02:25.222 INFO:teuthology.orchestra.run.trial044.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-18T05:02:25.222 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:25.259 INFO:teuthology.orchestra.run.trial044.stdout: Installing : runc-4:1.4.0-1.el9.x86_64 8/9 2026-02-18T05:02:25.275 INFO:teuthology.orchestra.run.trial044.stdout: Cleanup : libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : runc-4:1.4.0-1.el9.x86_64 7/9 2026-02-18T05:02:25.501 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : libnvme-1.16.1-2.el9.x86_64 8/9 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : libnvme-1.13-1.el9.x86_64 9/9 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout:Upgraded: 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: libnvme-1.16.1-2.el9.x86_64 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout:Installed: 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: runc-4:1.4.0-1.el9.x86_64 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:25.556 INFO:teuthology.orchestra.run.trial044.stdout:Complete! 2026-02-18T05:02:25.609 DEBUG:teuthology.parallel:result is None 2026-02-18T05:02:25.609 INFO:teuthology.run_tasks:Running task nvme_loop... 2026-02-18T05:02:25.625 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2026-02-18T05:02:25.625 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:02:25.625 DEBUG:teuthology.orchestra.run.trial044:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:02:25.641 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-18T05:02:25.641 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/vg_nvme/lv_1 2026-02-18T05:02:25.697 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:02:25.411041989 +0000 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.698 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.698 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-18T05:02:25.763 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:02:25.763 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:02:25.763 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000156861 s, 3.3 MB/s 2026-02-18T05:02:25.764 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-18T05:02:25.823 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/vg_nvme/lv_2 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1305 Links: 1 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:02:25.412041964 +0000 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.880 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:25.880 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-18T05:02:25.942 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:02:25.943 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:02:25.943 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000147484 s, 3.5 MB/s 2026-02-18T05:02:25.944 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-18T05:02:26.000 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/vg_nvme/lv_3 2026-02-18T05:02:26.058 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1302 Links: 1 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:02:25.412041964 +0000 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.059 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.060 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-18T05:02:26.123 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:02:26.123 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:02:26.123 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000143576 s, 3.6 MB/s 2026-02-18T05:02:26.124 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-18T05:02:26.182 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/vg_nvme/lv_4 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:26.238 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:02:25.412041964 +0000 2026-02-18T05:02:26.239 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.239 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.239 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:25.248045996 +0000 2026-02-18T05:02:26.239 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-18T05:02:26.300 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:02:26.300 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:02:26.300 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.00014582 s, 3.5 MB/s 2026-02-18T05:02:26.301 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-18T05:02:26.358 DEBUG:teuthology.orchestra.run.trial044:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2026-02-18T05:02:26.464 INFO:teuthology.orchestra.run.trial044.stdout:loop 2026-02-18T05:02:26.466 INFO:tasks.nvme_loop:Connecting nvme_loop trial044:/dev/vg_nvme/lv_1... 2026-02-18T05:02:26.466 DEBUG:teuthology.orchestra.run.trial044:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2026-02-18T05:02:26.496 INFO:teuthology.orchestra.run.trial044.stdout:1 2026-02-18T05:02:26.522 INFO:teuthology.orchestra.run.trial044.stdout:/dev/vg_nvme/lv_11 2026-02-18T05:02:26.556 INFO:teuthology.orchestra.run.trial044.stdout:connecting to device: nvme3 2026-02-18T05:02:26.558 INFO:tasks.nvme_loop:Connecting nvme_loop trial044:/dev/vg_nvme/lv_2... 2026-02-18T05:02:26.558 DEBUG:teuthology.orchestra.run.trial044:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2026-02-18T05:02:26.631 INFO:teuthology.orchestra.run.trial044.stdout:1 2026-02-18T05:02:26.656 INFO:teuthology.orchestra.run.trial044.stdout:/dev/vg_nvme/lv_21 2026-02-18T05:02:26.684 INFO:teuthology.orchestra.run.trial044.stdout:connecting to device: nvme4 2026-02-18T05:02:26.686 INFO:tasks.nvme_loop:Connecting nvme_loop trial044:/dev/vg_nvme/lv_3... 2026-02-18T05:02:26.686 DEBUG:teuthology.orchestra.run.trial044:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2026-02-18T05:02:26.757 INFO:teuthology.orchestra.run.trial044.stdout:1 2026-02-18T05:02:26.782 INFO:teuthology.orchestra.run.trial044.stdout:/dev/vg_nvme/lv_31 2026-02-18T05:02:26.816 INFO:teuthology.orchestra.run.trial044.stdout:connecting to device: nvme5 2026-02-18T05:02:26.817 INFO:tasks.nvme_loop:Connecting nvme_loop trial044:/dev/vg_nvme/lv_4... 2026-02-18T05:02:26.817 DEBUG:teuthology.orchestra.run.trial044:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2026-02-18T05:02:26.888 INFO:teuthology.orchestra.run.trial044.stdout:1 2026-02-18T05:02:26.913 INFO:teuthology.orchestra.run.trial044.stdout:/dev/vg_nvme/lv_41 2026-02-18T05:02:26.948 INFO:teuthology.orchestra.run.trial044.stdout:connecting to device: nvme6 2026-02-18T05:02:26.950 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:02:26.950 DEBUG:teuthology.orchestra.run.trial044:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:02:27.005 DEBUG:teuthology.orchestra.run.trial044:> lsblk 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:nvme2n1 259:0 0 1.7T 0 disk 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:nvme0n1 259:1 0 894.3G 0 disk 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:├─nvme0n1p1 259:3 0 512M 0 part /boot/efi 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:└─nvme0n1p2 259:4 0 893.8G 0 part / 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:nvme1n1 259:2 0 1.7T 0 disk 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-18T05:02:27.062 INFO:teuthology.orchestra.run.trial044.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-18T05:02:27.063 INFO:teuthology.orchestra.run.trial044.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-18T05:02:27.063 INFO:teuthology.orchestra.run.trial044.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-18T05:02:27.063 DEBUG:teuthology.orchestra.run.trial044:> sudo nvme list -o json 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout:{ 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "Devices":[ 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng0n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"E2MU200", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"25174FCD6BC2", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":149557813248, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":1875385008, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":960197124096, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng1n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"E3MQ000", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"112510AB50DB", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":139021561856, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":3750748848, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":1920383410176, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng2n1", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"E3MQ000", 2026-02-18T05:02:27.129 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"112510AB511B", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":139023831040, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":3750748848, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":1920383410176, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng3n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"38a805d7d79336575929", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng4n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"c6e1f3e869c8bd4fc729", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng5n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"d45230b47c52a535fa6a", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: }, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: { 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "NameSpace":1, 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-18T05:02:27.130 INFO:teuthology.orchestra.run.trial044.stdout: "GenericPath":"/dev/ng6n1", 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "SerialNumber":"27be8e429351636005d3", 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: "SectorSize":512 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: } 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout: ] 2026-02-18T05:02:27.131 INFO:teuthology.orchestra.run.trial044.stdout:} 2026-02-18T05:02:27.131 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-18T05:02:27.197 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.197 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.197 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00434624 s, 942 kB/s 2026-02-18T05:02:27.198 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-18T05:02:27.260 INFO:teuthology.orchestra.run.trial044.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.260 INFO:teuthology.orchestra.run.trial044.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.260 INFO:teuthology.orchestra.run.trial044.stdout:00000016 2026-02-18T05:02:27.261 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:27.327 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.327 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.327 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00444729 s, 921 kB/s 2026-02-18T05:02:27.329 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-18T05:02:27.391 INFO:teuthology.orchestra.run.trial044.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.391 INFO:teuthology.orchestra.run.trial044.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.391 INFO:teuthology.orchestra.run.trial044.stdout:40000016 2026-02-18T05:02:27.392 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:27.458 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.458 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.458 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00448922 s, 912 kB/s 2026-02-18T05:02:27.459 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-18T05:02:27.521 INFO:teuthology.orchestra.run.trial044.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.521 INFO:teuthology.orchestra.run.trial044.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.521 INFO:teuthology.orchestra.run.trial044.stdout:280000016 2026-02-18T05:02:27.522 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-18T05:02:27.587 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.587 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.587 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00461272 s, 888 kB/s 2026-02-18T05:02:27.588 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-18T05:02:27.651 INFO:teuthology.orchestra.run.trial044.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.651 INFO:teuthology.orchestra.run.trial044.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.651 INFO:teuthology.orchestra.run.trial044.stdout:00000016 2026-02-18T05:02:27.652 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:27.719 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.719 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.719 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00518184 s, 790 kB/s 2026-02-18T05:02:27.720 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-18T05:02:27.782 INFO:teuthology.orchestra.run.trial044.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.782 INFO:teuthology.orchestra.run.trial044.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.783 INFO:teuthology.orchestra.run.trial044.stdout:40000016 2026-02-18T05:02:27.784 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:27.850 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.851 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.851 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00488924 s, 838 kB/s 2026-02-18T05:02:27.852 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-18T05:02:27.915 INFO:teuthology.orchestra.run.trial044.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:27.916 INFO:teuthology.orchestra.run.trial044.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:27.916 INFO:teuthology.orchestra.run.trial044.stdout:280000016 2026-02-18T05:02:27.917 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-18T05:02:27.983 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:27.984 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:27.984 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00455299 s, 900 kB/s 2026-02-18T05:02:27.985 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-18T05:02:28.047 INFO:teuthology.orchestra.run.trial044.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.047 INFO:teuthology.orchestra.run.trial044.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.047 INFO:teuthology.orchestra.run.trial044.stdout:00000016 2026-02-18T05:02:28.048 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:28.115 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:28.116 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:28.116 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00456619 s, 897 kB/s 2026-02-18T05:02:28.117 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-18T05:02:28.180 INFO:teuthology.orchestra.run.trial044.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.180 INFO:teuthology.orchestra.run.trial044.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.180 INFO:teuthology.orchestra.run.trial044.stdout:40000016 2026-02-18T05:02:28.181 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:28.248 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:28.248 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:28.248 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00512363 s, 799 kB/s 2026-02-18T05:02:28.250 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-18T05:02:28.312 INFO:teuthology.orchestra.run.trial044.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.312 INFO:teuthology.orchestra.run.trial044.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.312 INFO:teuthology.orchestra.run.trial044.stdout:280000016 2026-02-18T05:02:28.313 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-18T05:02:28.382 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:28.382 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:28.383 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00515836 s, 794 kB/s 2026-02-18T05:02:28.384 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-18T05:02:28.446 INFO:teuthology.orchestra.run.trial044.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.446 INFO:teuthology.orchestra.run.trial044.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.446 INFO:teuthology.orchestra.run.trial044.stdout:00000016 2026-02-18T05:02:28.447 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:28.515 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:28.515 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:28.515 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00481225 s, 851 kB/s 2026-02-18T05:02:28.516 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-18T05:02:28.579 INFO:teuthology.orchestra.run.trial044.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.579 INFO:teuthology.orchestra.run.trial044.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.579 INFO:teuthology.orchestra.run.trial044.stdout:40000016 2026-02-18T05:02:28.580 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:28.647 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records in 2026-02-18T05:02:28.648 INFO:teuthology.orchestra.run.trial044.stderr:4096+0 records out 2026-02-18T05:02:28.648 INFO:teuthology.orchestra.run.trial044.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00490173 s, 836 kB/s 2026-02-18T05:02:28.649 DEBUG:teuthology.orchestra.run.trial044:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-18T05:02:28.712 INFO:teuthology.orchestra.run.trial044.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:28.712 INFO:teuthology.orchestra.run.trial044.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:28.712 INFO:teuthology.orchestra.run.trial044.stdout:280000016 2026-02-18T05:02:28.713 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-18T05:02:28.714 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:02:28.714 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/scratch_devs 2026-02-18T05:02:28.777 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:02:28.777 DEBUG:teuthology.orchestra.run.trial080:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:02:28.798 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-02-18T05:02:28.799 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/vg_nvme/lv_1 2026-02-18T05:02:28.856 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-18T05:02:28.856 INFO:teuthology.orchestra.run.trial080.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:28.856 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1313 Links: 1 2026-02-18T05:02:28.856 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:28.856 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:28.857 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:02:24.317193406 +0000 2026-02-18T05:02:28.857 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:28.857 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:28.857 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:28.857 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-18T05:02:28.922 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:02:28.922 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:02:28.923 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000155127 s, 3.3 MB/s 2026-02-18T05:02:28.924 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-18T05:02:28.981 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/vg_nvme/lv_2 2026-02-18T05:02:29.038 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-18T05:02:29.038 INFO:teuthology.orchestra.run.trial080.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:29.038 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1310 Links: 1 2026-02-18T05:02:29.038 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:29.039 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:29.039 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:02:24.318193382 +0000 2026-02-18T05:02:29.039 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.039 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.039 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.039 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-18T05:02:29.103 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:02:29.104 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:02:29.104 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000143605 s, 3.6 MB/s 2026-02-18T05:02:29.105 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-18T05:02:29.162 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/vg_nvme/lv_3 2026-02-18T05:02:29.220 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1305 Links: 1 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:02:24.318193382 +0000 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.221 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.222 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.222 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-18T05:02:29.285 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:02:29.286 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:02:29.286 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000149626 s, 3.4 MB/s 2026-02-18T05:02:29.287 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-18T05:02:29.344 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/vg_nvme/lv_4 2026-02-18T05:02:29.402 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:device_t:s0 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:02:24.318193382 +0000 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.403 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:24.157197315 +0000 2026-02-18T05:02:29.404 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-18T05:02:29.466 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:02:29.466 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:02:29.466 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.00014659 s, 3.5 MB/s 2026-02-18T05:02:29.468 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-18T05:02:29.525 DEBUG:teuthology.orchestra.run.trial080:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2026-02-18T05:02:29.630 INFO:teuthology.orchestra.run.trial080.stdout:loop 2026-02-18T05:02:29.632 INFO:tasks.nvme_loop:Connecting nvme_loop trial080:/dev/vg_nvme/lv_1... 2026-02-18T05:02:29.632 DEBUG:teuthology.orchestra.run.trial080:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2026-02-18T05:02:29.664 INFO:teuthology.orchestra.run.trial080.stdout:1 2026-02-18T05:02:29.689 INFO:teuthology.orchestra.run.trial080.stdout:/dev/vg_nvme/lv_11 2026-02-18T05:02:29.723 INFO:teuthology.orchestra.run.trial080.stdout:connecting to device: nvme3 2026-02-18T05:02:29.725 INFO:tasks.nvme_loop:Connecting nvme_loop trial080:/dev/vg_nvme/lv_2... 2026-02-18T05:02:29.726 DEBUG:teuthology.orchestra.run.trial080:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2026-02-18T05:02:29.797 INFO:teuthology.orchestra.run.trial080.stdout:1 2026-02-18T05:02:29.822 INFO:teuthology.orchestra.run.trial080.stdout:/dev/vg_nvme/lv_21 2026-02-18T05:02:29.851 INFO:teuthology.orchestra.run.trial080.stdout:connecting to device: nvme4 2026-02-18T05:02:29.853 INFO:tasks.nvme_loop:Connecting nvme_loop trial080:/dev/vg_nvme/lv_3... 2026-02-18T05:02:29.853 DEBUG:teuthology.orchestra.run.trial080:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2026-02-18T05:02:29.925 INFO:teuthology.orchestra.run.trial080.stdout:1 2026-02-18T05:02:29.952 INFO:teuthology.orchestra.run.trial080.stdout:/dev/vg_nvme/lv_31 2026-02-18T05:02:29.980 INFO:teuthology.orchestra.run.trial080.stdout:connecting to device: nvme5 2026-02-18T05:02:29.982 INFO:tasks.nvme_loop:Connecting nvme_loop trial080:/dev/vg_nvme/lv_4... 2026-02-18T05:02:29.982 DEBUG:teuthology.orchestra.run.trial080:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2026-02-18T05:02:30.053 INFO:teuthology.orchestra.run.trial080.stdout:1 2026-02-18T05:02:30.080 INFO:teuthology.orchestra.run.trial080.stdout:/dev/vg_nvme/lv_41 2026-02-18T05:02:30.113 INFO:teuthology.orchestra.run.trial080.stdout:connecting to device: nvme6 2026-02-18T05:02:30.115 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:02:30.115 DEBUG:teuthology.orchestra.run.trial080:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:02:30.172 DEBUG:teuthology.orchestra.run.trial080:> lsblk 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:nvme0n1 259:0 0 894.3G 0 disk 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:├─nvme0n1p1 259:1 0 512M 0 part /boot/efi 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:└─nvme0n1p2 259:2 0 893.8G 0 part / 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:nvme1n1 259:3 0 1.7T 0 disk 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:├─vg_nvme-lv_1 253:0 0 700G 0 lvm 2026-02-18T05:02:30.230 INFO:teuthology.orchestra.run.trial080.stdout:├─vg_nvme-lv_2 253:1 0 700G 0 lvm 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:└─vg_nvme-lv_5 253:4 0 100G 0 lvm /var/lib/ceph 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:nvme2n1 259:4 0 1.7T 0 disk 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:├─vg_nvme-lv_3 253:2 0 700G 0 lvm 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:└─vg_nvme-lv_4 253:3 0 700G 0 lvm 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:nvme3n1 259:6 0 700G 0 disk 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:nvme4n1 259:8 0 700G 0 disk 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:nvme5n1 259:10 0 700G 0 disk 2026-02-18T05:02:30.231 INFO:teuthology.orchestra.run.trial080.stdout:nvme6n1 259:12 0 700G 0 disk 2026-02-18T05:02:30.232 DEBUG:teuthology.orchestra.run.trial080:> sudo nvme list -o json 2026-02-18T05:02:30.296 INFO:teuthology.orchestra.run.trial080.stdout:{ 2026-02-18T05:02:30.296 INFO:teuthology.orchestra.run.trial080.stdout: "Devices":[ 2026-02-18T05:02:30.296 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme0n1", 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng0n1", 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"E2MU200", 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"Micron_7450_MTFDKBA960TFR", 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"25174FCD87E5", 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":303796129792, 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":1875385008, 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":960197124096, 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.297 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme1n1", 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng1n1", 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"E3MQ000", 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"012510B000E7", 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":139270402048, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":3750748848, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":1920383410176, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.298 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme2n1", 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng2n1", 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"E3MQ000", 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"MTFDKCC1T9TGP-1BK1JABYY", 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"012510B00500", 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":139571437568, 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":3750748848, 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":1920383410176, 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.299 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme3n1", 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng3n1", 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"9e8fc13609650657c001", 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.300 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme4n1", 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng4n1", 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"bf586bdda0b3173f492d", 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.301 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme5n1", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng5n1", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"9e08deab6148a6b9f8f3", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: }, 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: { 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "NameSpace":1, 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "DevicePath":"/dev/nvme6n1", 2026-02-18T05:02:30.302 INFO:teuthology.orchestra.run.trial080.stdout: "GenericPath":"/dev/ng6n1", 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "Firmware":"5.14.0-6", 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "ModelNumber":"Linux", 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "SerialNumber":"1be5f0c96904f83cb2ac", 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "UsedBytes":751619276800, 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "MaximumLBA":1468006400, 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "PhysicalSize":751619276800, 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: "SectorSize":512 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: } 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout: ] 2026-02-18T05:02:30.303 INFO:teuthology.orchestra.run.trial080.stdout:} 2026-02-18T05:02:30.305 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2026-02-18T05:02:30.372 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:30.372 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:30.372 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00435029 s, 942 kB/s 2026-02-18T05:02:30.374 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2026-02-18T05:02:30.437 INFO:teuthology.orchestra.run.trial080.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:30.437 INFO:teuthology.orchestra.run.trial080.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:30.437 INFO:teuthology.orchestra.run.trial080.stdout:00000016 2026-02-18T05:02:30.438 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:30.505 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:30.505 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:30.505 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00440197 s, 930 kB/s 2026-02-18T05:02:30.507 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2026-02-18T05:02:30.569 INFO:teuthology.orchestra.run.trial080.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:30.570 INFO:teuthology.orchestra.run.trial080.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:30.570 INFO:teuthology.orchestra.run.trial080.stdout:40000016 2026-02-18T05:02:30.571 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:30.638 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:30.638 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:30.638 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.004446 s, 921 kB/s 2026-02-18T05:02:30.639 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2026-02-18T05:02:30.702 INFO:teuthology.orchestra.run.trial080.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:30.702 INFO:teuthology.orchestra.run.trial080.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:30.702 INFO:teuthology.orchestra.run.trial080.stdout:280000016 2026-02-18T05:02:30.703 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2026-02-18T05:02:30.769 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:30.770 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:30.770 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00443876 s, 923 kB/s 2026-02-18T05:02:30.771 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2026-02-18T05:02:30.833 INFO:teuthology.orchestra.run.trial080.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:30.834 INFO:teuthology.orchestra.run.trial080.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:30.834 INFO:teuthology.orchestra.run.trial080.stdout:00000016 2026-02-18T05:02:30.835 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:30.902 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:30.902 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:30.903 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00445283 s, 920 kB/s 2026-02-18T05:02:30.904 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2026-02-18T05:02:30.966 INFO:teuthology.orchestra.run.trial080.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:30.967 INFO:teuthology.orchestra.run.trial080.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:30.967 INFO:teuthology.orchestra.run.trial080.stdout:40000016 2026-02-18T05:02:30.968 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:31.034 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.035 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.035 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00442547 s, 926 kB/s 2026-02-18T05:02:31.036 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2026-02-18T05:02:31.100 INFO:teuthology.orchestra.run.trial080.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.100 INFO:teuthology.orchestra.run.trial080.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.100 INFO:teuthology.orchestra.run.trial080.stdout:280000016 2026-02-18T05:02:31.102 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=0 bs=1 count=4096 2026-02-18T05:02:31.169 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.170 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.170 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00432671 s, 947 kB/s 2026-02-18T05:02:31.171 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s0 /dev/nvme5n1 2026-02-18T05:02:31.234 INFO:teuthology.orchestra.run.trial080.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.234 INFO:teuthology.orchestra.run.trial080.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.235 INFO:teuthology.orchestra.run.trial080.stdout:00000016 2026-02-18T05:02:31.236 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:31.303 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.303 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.303 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0043812 s, 935 kB/s 2026-02-18T05:02:31.304 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s1073741824 /dev/nvme5n1 2026-02-18T05:02:31.366 INFO:teuthology.orchestra.run.trial080.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.366 INFO:teuthology.orchestra.run.trial080.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.366 INFO:teuthology.orchestra.run.trial080.stdout:40000016 2026-02-18T05:02:31.368 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme5n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:31.434 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.435 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.435 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00468384 s, 874 kB/s 2026-02-18T05:02:31.436 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s10737418240 /dev/nvme5n1 2026-02-18T05:02:31.499 INFO:teuthology.orchestra.run.trial080.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.499 INFO:teuthology.orchestra.run.trial080.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.499 INFO:teuthology.orchestra.run.trial080.stdout:280000016 2026-02-18T05:02:31.500 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=0 bs=1 count=4096 2026-02-18T05:02:31.567 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.567 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.567 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0044362 s, 923 kB/s 2026-02-18T05:02:31.569 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s0 /dev/nvme6n1 2026-02-18T05:02:31.631 INFO:teuthology.orchestra.run.trial080.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.631 INFO:teuthology.orchestra.run.trial080.stdout:00000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.632 INFO:teuthology.orchestra.run.trial080.stdout:00000016 2026-02-18T05:02:31.633 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=1073741824 bs=1 count=4096 2026-02-18T05:02:31.700 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.700 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.701 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0045364 s, 903 kB/s 2026-02-18T05:02:31.702 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s1073741824 /dev/nvme6n1 2026-02-18T05:02:31.763 INFO:teuthology.orchestra.run.trial080.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.764 INFO:teuthology.orchestra.run.trial080.stdout:40000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.764 INFO:teuthology.orchestra.run.trial080.stdout:40000016 2026-02-18T05:02:31.765 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/zero of=/dev/nvme6n1 seek=10737418240 bs=1 count=4096 2026-02-18T05:02:31.832 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records in 2026-02-18T05:02:31.832 INFO:teuthology.orchestra.run.trial080.stderr:4096+0 records out 2026-02-18T05:02:31.832 INFO:teuthology.orchestra.run.trial080.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00441661 s, 927 kB/s 2026-02-18T05:02:31.833 DEBUG:teuthology.orchestra.run.trial080:> sudo hexdump -n22 -C -s10737418240 /dev/nvme6n1 2026-02-18T05:02:31.895 INFO:teuthology.orchestra.run.trial080.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2026-02-18T05:02:31.895 INFO:teuthology.orchestra.run.trial080.stdout:280000010 00 00 00 00 00 00 |......| 2026-02-18T05:02:31.896 INFO:teuthology.orchestra.run.trial080.stdout:280000016 2026-02-18T05:02:31.897 INFO:tasks.nvme_loop:new_devs ['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-18T05:02:31.897 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:02:31.897 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/scratch_devs 2026-02-18T05:02:31.962 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-18T05:02:32.096 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed'} 2026-02-18T05:02:32.096 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T05:02:32.099 INFO:tasks.cephadm:Cluster fsid is 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:32.099 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-18T05:02:32.099 INFO:tasks.cephadm:No mon roles; fabricating mons 2026-02-18T05:02:32.099 INFO:tasks.cephadm:Monitor IPs: {'mon.trial044': '10.20.193.44', 'mon.trial080': '10.20.193.80'} 2026-02-18T05:02:32.099 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-18T05:02:32.100 DEBUG:teuthology.orchestra.run.trial044:> sudo hostname $(hostname -s) 2026-02-18T05:02:32.125 DEBUG:teuthology.orchestra.run.trial080:> sudo hostname $(hostname -s) 2026-02-18T05:02:32.149 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-18T05:02:32.149 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T05:02:32.266 INFO:tasks.cephadm:builder_project result: [{'url': 'https://1.chacra.ceph.com/r/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/flavors/default/', 'ref': '20.2.1_2.17.26-baseline_2', 'sha1': 'adc1923395f2bcd6ae89b5d331d278364d1848ed', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-17 18:19:08.791671', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['x86_64', 'source'], 'extra': {'version': '20.2.0-670-gadc19233', 'package_manager_version': '20.2.0-670.gadc19233', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3038/', 'root_build_cause': '', 'node_name': '10.20.192.26+soko16', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-18T05:02:32.399 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref 20.2.1_2.17.26-baseline_2, sha1 adc1923395f2bcd6ae89b5d331d278364d1848ed from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T05:02:32.401 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm 2026-02-18T05:02:32.401 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm 2026-02-18T05:02:32.401 DEBUG:teuthology.orchestra.run.trial044:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.673 INFO:teuthology.orchestra.run.trial044.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054179 Feb 18 05:02 /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.673 DEBUG:teuthology.orchestra.run.trial080:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/20.2.1_2.17.26-baseline_2/adc1923395f2bcd6ae89b5d331d278364d1848ed/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.938 INFO:teuthology.orchestra.run.trial080.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054179 Feb 18 05:02 /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.938 DEBUG:teuthology.orchestra.run.trial044:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.958 DEBUG:teuthology.orchestra.run.trial080:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-18T05:02:32.990 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed on all hosts... 2026-02-18T05:02:32.990 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed pull 2026-02-18T05:02:33.000 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed pull 2026-02-18T05:02:33.150 INFO:teuthology.orchestra.run.trial044.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T05:02:33.163 INFO:teuthology.orchestra.run.trial080.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T05:02:41.724 INFO:teuthology.orchestra.run.trial044.stdout:{ 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout: "ceph_version": "ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable)", 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout: "image_id": "c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc", 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout: "repo_digests": [ 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c" 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout: ] 2026-02-18T05:02:41.725 INFO:teuthology.orchestra.run.trial044.stdout:} 2026-02-18T05:02:42.763 INFO:teuthology.orchestra.run.trial080.stdout:{ 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout: "ceph_version": "ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable)", 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout: "image_id": "c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc", 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout: "repo_digests": [ 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c" 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout: ] 2026-02-18T05:02:42.764 INFO:teuthology.orchestra.run.trial080.stdout:} 2026-02-18T05:02:42.780 DEBUG:teuthology.orchestra.run.trial044:> sudo mkdir -p /etc/ceph 2026-02-18T05:02:42.807 DEBUG:teuthology.orchestra.run.trial080:> sudo mkdir -p /etc/ceph 2026-02-18T05:02:42.841 DEBUG:teuthology.orchestra.run.trial044:> sudo chmod 777 /etc/ceph 2026-02-18T05:02:42.871 DEBUG:teuthology.orchestra.run.trial080:> sudo chmod 777 /etc/ceph 2026-02-18T05:02:42.907 INFO:tasks.cephadm:Writing seed config... 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-18T05:02:42.910 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2026-02-18T05:02:42.911 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:02:42.911 DEBUG:teuthology.orchestra.run.trial044:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-18T05:02:42.930 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=isa 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 = 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd mclock skip benchmark = true 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 2026-02-18T05:02:42.930 DEBUG:teuthology.orchestra.run.trial044:mon.trial044> sudo journalctl -f -n 0 -u ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service 2026-02-18T05:02:42.972 INFO:tasks.cephadm:Bootstrapping... 2026-02-18T05:02:42.972 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed -v bootstrap --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 --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 10.20.193.44 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:02:43.112 INFO:teuthology.orchestra.run.trial044.stdout:-------------------------------------------------------------------------------- 2026-02-18T05:02:43.112 INFO:teuthology.orchestra.run.trial044.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed', '-v', 'bootstrap', '--fsid', '0815dcbd-0c87-11f1-9bb9-d404e6e7d460', '--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', '10.20.193.44', '--skip-admin-label'] 2026-02-18T05:02:43.113 INFO:teuthology.orchestra.run.trial044.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-18T05:02:43.113 INFO:teuthology.orchestra.run.trial044.stdout:Verifying podman|docker is present... 2026-02-18T05:02:43.129 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stdout 5.6.0 2026-02-18T05:02:43.129 INFO:teuthology.orchestra.run.trial044.stdout:Verifying lvm2 is present... 2026-02-18T05:02:43.129 INFO:teuthology.orchestra.run.trial044.stdout:Verifying time synchronization is in place... 2026-02-18T05:02:43.135 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-18T05:02:43.136 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-18T05:02:43.141 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-18T05:02:43.141 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:02:43.147 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout enabled 2026-02-18T05:02:43.153 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout active 2026-02-18T05:02:43.153 INFO:teuthology.orchestra.run.trial044.stdout:Unit chronyd.service is enabled and running 2026-02-18T05:02:43.153 INFO:teuthology.orchestra.run.trial044.stdout:Repeating the final host check... 2026-02-18T05:02:43.170 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stdout 5.6.0 2026-02-18T05:02:43.170 INFO:teuthology.orchestra.run.trial044.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-18T05:02:43.170 INFO:teuthology.orchestra.run.trial044.stdout:systemctl is present 2026-02-18T05:02:43.170 INFO:teuthology.orchestra.run.trial044.stdout:lvcreate is present 2026-02-18T05:02:43.175 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-18T05:02:43.175 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-18T05:02:43.181 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-18T05:02:43.181 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:02:43.186 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout enabled 2026-02-18T05:02:43.192 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout active 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Unit chronyd.service is enabled and running 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Host looks OK 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Cluster fsid: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Acquiring lock 140000649400720 on /run/cephadm/0815dcbd-0c87-11f1-9bb9-d404e6e7d460.lock 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Lock 140000649400720 acquired on /run/cephadm/0815dcbd-0c87-11f1-9bb9-d404e6e7d460.lock 2026-02-18T05:02:43.193 INFO:teuthology.orchestra.run.trial044.stdout:Verifying IP 10.20.193.44 port 3300 ... 2026-02-18T05:02:43.194 INFO:teuthology.orchestra.run.trial044.stdout:Verifying IP 10.20.193.44 port 6789 ... 2026-02-18T05:02:43.194 INFO:teuthology.orchestra.run.trial044.stdout:Base mon IP(s) is [10.20.193.44:3300, 10.20.193.44:6789], mon addrv is [v2:10.20.193.44:3300,v1:10.20.193.44:6789] 2026-02-18T05:02:43.196 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.44 metric 102 2026-02-18T05:02:43.196 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.44 metric 102 2026-02-18T05:02:43.196 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-18T05:02:43.198 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-18T05:02:43.199 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-18T05:02:43.199 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-18T05:02:43.202 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-18T05:02:43.202 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-18T05:02:43.202 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T05:02:43.202 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-18T05:02:43.202 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout inet6 fe80::a094:5e64:fc80:ed38/64 scope link noprefixroute 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:6080/64 scope link 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:Mon IP `10.20.193.44` is in CIDR network `10.20.192.0/20` 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:Mon IP `10.20.193.44` is in CIDR network `10.20.192.0/20` 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-18T05:02:43.203 INFO:teuthology.orchestra.run.trial044.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T05:02:43.471 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stdout c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed... 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Getting image source signatures 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Copying blob sha256:ddefcddf6ef03d04de1b3dcc9836d89822cd11e5095471fffeae38220180f545 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Copying config sha256:c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc 2026-02-18T05:02:43.472 INFO:teuthology.orchestra.run.trial044.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-18T05:02:43.741 INFO:teuthology.orchestra.run.trial044.stdout:ceph: stdout ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable) 2026-02-18T05:02:43.741 INFO:teuthology.orchestra.run.trial044.stdout:Ceph version: ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable) 2026-02-18T05:02:43.741 INFO:teuthology.orchestra.run.trial044.stdout:Extracting ceph user uid/gid from container image... 2026-02-18T05:02:43.983 INFO:teuthology.orchestra.run.trial044.stdout:stat: stdout 167 167 2026-02-18T05:02:43.984 INFO:teuthology.orchestra.run.trial044.stdout:Creating initial keys... 2026-02-18T05:02:44.256 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph-authtool: stdout AQD0R5Vp82U7CBAAGHdNtlmp4XA7pj1PIr1XTw== 2026-02-18T05:02:44.521 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph-authtool: stdout AQD0R5VpCJv+FxAAu510KNv0nWjl18AysL1V2Q== 2026-02-18T05:02:44.784 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph-authtool: stdout AQD0R5VpEATKJxAAqYnbp+mH0mskRK0fi5hZUw== 2026-02-18T05:02:44.785 INFO:teuthology.orchestra.run.trial044.stdout:Creating initial monmap... 2026-02-18T05:02:45.055 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:monmaptool for trial044 [v2:10.20.193.44:3300,v1:10.20.193.44:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:setting min_mon_release = tentacle 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: set fsid to 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:02:45.056 INFO:teuthology.orchestra.run.trial044.stdout:Creating mon... 2026-02-18T05:02:45.382 INFO:teuthology.orchestra.run.trial044.stdout:create mon.trial044 on 2026-02-18T05:02:45.659 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-18T05:02:45.775 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target → /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target. 2026-02-18T05:02:45.775 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target → /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target. 2026-02-18T05:02:45.909 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044 2026-02-18T05:02:45.909 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service: Unit ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service not loaded. 2026-02-18T05:02:46.029 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target.wants/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service → /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@.service. 2026-02-18T05:02:46.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 podman[17027]: 2026-02-18 05:02:46.126606562 +0000 UTC m=+0.014950170 container create 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2026-02-18T05:02:46.185 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T05:02:46.185 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout disabled 2026-02-18T05:02:46.191 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T05:02:46.192 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:02:46.192 INFO:teuthology.orchestra.run.trial044.stdout:firewalld.service is not enabled 2026-02-18T05:02:46.192 INFO:teuthology.orchestra.run.trial044.stdout:Not possible to enable service . firewalld.service is not available 2026-02-18T05:02:46.192 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mon to start... 2026-02-18T05:02:46.192 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mon... 2026-02-18T05:02:46.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 podman[17027]: 2026-02-18 05:02:46.167079213 +0000 UTC m=+0.055422821 container init 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, OSD_FLAVOR=debug, CEPH_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T05:02:46.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 podman[17027]: 2026-02-18 05:02:46.170381095 +0000 UTC m=+0.058724703 container start 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, CEPH_REF=20.2.1_2.17.26-baseline_2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.schema-version=1.0, OSD_FLAVOR=debug, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-18T05:02:46.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 bash[17027]: 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 2026-02-18T05:02:46.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 podman[17027]: 2026-02-18 05:02:46.120481085 +0000 UTC m=+0.008824693 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T05:02:46.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 systemd[1]: Started Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460. 2026-02-18T05:02:46.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 ceph-mon[17079]: mkfs 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:46.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:46 trial044 ceph-mon[17079]: mon.trial044 is new leader, mons trial044 in quorum (ranks 0) 2026-02-18T05:02:46.496 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout cluster: 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout id: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout services: 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum trial044 (age 0.163134s) [leader: trial044] 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.497 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout data: 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout pgs: 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:mon is available 2026-02-18T05:02:46.498 INFO:teuthology.orchestra.run.trial044.stdout:Assimilating anything we can from ceph.conf... 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [global] 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout fsid = 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.44:3300,v1:10.20.193.44:6789] 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-18T05:02:46.792 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [osd] 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-18T05:02:46.793 INFO:teuthology.orchestra.run.trial044.stdout:Generating new minimal ceph.conf... 2026-02-18T05:02:47.074 INFO:teuthology.orchestra.run.trial044.stdout:Restarting the monitor... 2026-02-18T05:02:47.362 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 systemd[1]: Stopping Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460... 2026-02-18T05:02:47.363 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044[17053]: 2026-02-18T05:02:47.157+0000 7faa6f1f0640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial044 -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 2026-02-18T05:02:47.363 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044[17053]: 2026-02-18T05:02:47.157+0000 7faa6f1f0640 -1 mon.trial044@0(leader) e1 *** Got Signal Terminated *** 2026-02-18T05:02:47.363 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17447]: 2026-02-18 05:02:47.361077125 +0000 UTC m=+0.217300027 container died 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.vendor=CentOS, OSD_FLAVOR=debug, org.label-schema.schema-version=1.0, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2) 2026-02-18T05:02:47.640 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17447]: 2026-02-18 05:02:47.470246796 +0000 UTC m=+0.326469698 container remove 1e6d36251e754e73a9ed7285d49f2474efee507f603464fbda365dae33a025c1 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, ceph=True, CEPH_REF=20.2.1_2.17.26-baseline_2, OSD_FLAVOR=debug, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0) 2026-02-18T05:02:47.641 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 bash[17447]: ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044 2026-02-18T05:02:47.641 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 systemd[1]: ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service: Deactivated successfully. 2026-02-18T05:02:47.641 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 systemd[1]: Stopped Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460. 2026-02-18T05:02:47.641 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 systemd[1]: Starting Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460... 2026-02-18T05:02:47.641 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17587]: 2026-02-18 05:02:47.608063903 +0000 UTC m=+0.016895557 container create 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=debug, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-18T05:02:47.650 INFO:teuthology.orchestra.run.trial044.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17587]: 2026-02-18 05:02:47.641192637 +0000 UTC m=+0.050024231 container init 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=debug, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed) 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17587]: 2026-02-18 05:02:47.644384154 +0000 UTC m=+0.053215759 container start 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, OSD_FLAVOR=debug, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 bash[17587]: 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 podman[17587]: 2026-02-18 05:02:47.601842137 +0000 UTC m=+0.010673731 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 systemd[1]: Started Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460. 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: set uid:gid to 167:167 (ceph:ceph) 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable - Debug), process ceph-mon, pid 7 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: pidfile_write: ignore empty --pid-file 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: load: jerasure load: lrc 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: RocksDB version: 7.9.2 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Git sha 0 2026-02-18T05:02:47.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Compile date 2026-02-17 18:17:02 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: DB SUMMARY 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: DB Session ID: SOXR49IQNTE3GQGRKG1T 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: CURRENT file: CURRENT 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: IDENTITY file: IDENTITY 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial044/store.db dir, Total Num: 1, files: 000008.sst 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial044/store.db: 000009.log size: 76167 ; 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.error_if_exists: 0 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.create_if_missing: 0 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.paranoid_checks: 1 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-18T05:02:47.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.env: 0x557eea05b100 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.fs: PosixFileSystem 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.info_log: 0x557eef27fd60 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_file_opening_threads: 16 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.statistics: (nil) 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.use_fsync: 0 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_log_file_size: 0 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.keep_log_file_num: 1000 2026-02-18T05:02:47.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.recycle_log_file_num: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_fallocate: 1 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_mmap_reads: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_mmap_writes: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.use_direct_reads: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.create_missing_column_families: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.db_log_dir: 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.wal_dir: 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-18T05:02:47.933 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.advise_random_on_open: 1 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.db_write_buffer_size: 0 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.write_buffer_manager: 0x557eef282500 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.rate_limiter: (nil) 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.wal_recovery_mode: 2 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enable_thread_tracking: 0 2026-02-18T05:02:47.934 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enable_pipelined_write: 0 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.unordered_write: 0 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.row_cache: None 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.wal_filter: None 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-18T05:02:47.936 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_ingest_behind: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.two_write_queues: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.manual_wal_flush: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.wal_compression: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.atomic_flush: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.log_readahead_size: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.best_efforts_recovery: 0 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-18T05:02:47.937 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.allow_data_in_errors: 0 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.db_host_id: __hostname__ 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_background_jobs: 2 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_background_compactions: -1 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_subcompactions: 1 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_total_wal_size: 0 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-18T05:02:47.938 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_open_files: -1 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bytes_per_sync: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_readahead_size: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_background_flushes: -1 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Compression algorithms supported: 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kZSTD supported: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kXpressCompression supported: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kBZip2Compression supported: 0 2026-02-18T05:02:47.939 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kLZ4Compression supported: 1 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kZlibCompression supported: 1 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kLZ4HCCompression supported: 1 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: kSnappyCompression supported: 1 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial044/store.db/MANIFEST-000010 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.merge_operator: 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_filter: None 2026-02-18T05:02:47.940 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_filter_factory: None 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.sst_partitioner_factory: None 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557eef27e520) 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: cache_index_and_filter_blocks: 1 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: pin_top_level_index_and_filter: 1 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: index_type: 0 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: data_block_index_type: 0 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: index_shortening: 1 2026-02-18T05:02:47.941 INFO:journalctl@ceph.mon.trial044.trial044.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: checksum: 4 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: no_block_cache: 0 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_cache: 0x557eef29fb90 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_cache_name: BinnedLRUCache 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_cache_options: 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: capacity : 536870912 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: num_shard_bits : 4 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: strict_capacity_limit : 0 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: high_pri_pool_ratio: 0.000 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_cache_compressed: (nil) 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: persistent_cache: (nil) 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_size: 4096 2026-02-18T05:02:47.942 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_size_deviation: 10 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_restart_interval: 16 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: index_block_restart_interval: 1 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: metadata_block_size: 4096 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: partition_filters: 0 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: use_delta_encoding: 1 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: filter_policy: bloomfilter 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: whole_key_filtering: 1 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: verify_compression: 0 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: read_amp_bytes_per_bit: 0 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: format_version: 5 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: enable_index_compression: 1 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: block_align: 0 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: max_auto_readahead_size: 262144 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: prepopulate_block_cache: 0 2026-02-18T05:02:47.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout: initial_auto_readahead_size: 8192 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout: num_file_reads_for_auto_readahead: 2 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.write_buffer_size: 33554432 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_write_buffer_number: 2 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression: NoCompression 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression: Disabled 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.prefix_extractor: nullptr 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.num_levels: 7 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-18T05:02:47.944 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.level: 32767 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.strategy: 0 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.enabled: false 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.target_file_size_base: 67108864 2026-02-18T05:02:47.945 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.arena_block_size: 1048576 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-18T05:02:47.946 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.disable_auto_compactions: 0 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.inplace_update_support: 0 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-18T05:02:47.947 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.bloom_locality: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.max_successive_merges: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.paranoid_file_checks: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.force_consistency_checks: 1 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.report_bg_io_stats: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.ttl: 2592000 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enable_blob_files: false 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.min_blob_size: 0 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_file_size: 268435456 2026-02-18T05:02:47.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.blob_file_starting_level: 0 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial044/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 8d7d7382-264f-425a-98bb-3bfdc562c2b7 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390967673118, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390967673949, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73309, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 227, "table_properties": {"data_size": 71577, "index_size": 181, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 517, "raw_key_size": 9640, "raw_average_key_size": 48, "raw_value_size": 66081, "raw_average_value_size": 333, "num_data_blocks": 8, "num_entries": 198, "num_filter_entries": 198, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771390967, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "8d7d7382-264f-425a-98bb-3bfdc562c2b7", "db_session_id": "SOXR49IQNTE3GQGRKG1T", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771390967674014, "job": 1, "event": "recovery_finished"} 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial044/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x557eef2a2700 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: DB pointer 0x557eef2b4000 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: ** DB Stats ** 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-18T05:02:47.949 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: ** Compaction Stats [default] ** 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: L0 2/0 73.48 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 111.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Sum 2/0 73.48 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 111.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.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 111.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: ** Compaction Stats [default] ** 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.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 111.5 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Cumulative compaction: 0.00 GB write, 24.07 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Interval compaction: 0.00 GB write, 24.07 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T05:02:47.950 INFO:journalctl@ceph.mon.trial044.trial044.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 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Block cache BinnedLRUCache@0x557eef29fb90#7 capacity: 512.00 MB usage: 1.09 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 2.2e-05 secs_since: 0 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.72 KB,0.000137091%) IndexBlock(2,0.38 KB,7.15256e-05%) Misc(1,0.00 KB,0%) 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: starting mon.trial044 rank 0 at public addrs [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] at bind addrs [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] mon_data /var/lib/ceph/mon/ceph-trial044 fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???) e1 preinit fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).mds e1 new map 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).mds e1 print_map 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: e1 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: btime 2026-02-18T05:02:46:208181+0000 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: legacy client fscid: -1 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout: No filesystems configured 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mon.trial044 is new leader, mons trial044 in quorum (ranks 0) 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: monmap epoch 1 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: last_changed 2026-02-18T05:02:44.927341+0000 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: created 2026-02-18T05:02:44.927341+0000 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: min_mon_release 20 (tentacle) 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: election_strategy: 1 2026-02-18T05:02:47.951 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: 0: [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] mon.trial044 2026-02-18T05:02:47.952 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: fsmap 2026-02-18T05:02:47.952 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: osdmap e1: 0 total, 0 up, 0 in 2026-02-18T05:02:47.952 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:47 trial044 ceph-mon[17637]: mgrmap e1: no daemons active 2026-02-18T05:02:47.952 INFO:teuthology.orchestra.run.trial044.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-18T05:02:47.952 INFO:teuthology.orchestra.run.trial044.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:02:47.952 INFO:teuthology.orchestra.run.trial044.stdout:Creating mgr... 2026-02-18T05:02:47.952 INFO:teuthology.orchestra.run.trial044.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-18T05:02:47.952 INFO:teuthology.orchestra.run.trial044.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-18T05:02:47.953 INFO:teuthology.orchestra.run.trial044.stdout:Verifying port 0.0.0.0:8443 ... 2026-02-18T05:02:48.072 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mgr.trial044.gyygsk 2026-02-18T05:02:48.072 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mgr.trial044.gyygsk.service: Unit ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mgr.trial044.gyygsk.service not loaded. 2026-02-18T05:02:48.182 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460.target.wants/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mgr.trial044.gyygsk.service → /etc/systemd/system/ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@.service. 2026-02-18T05:02:48.349 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T05:02:48.349 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout disabled 2026-02-18T05:02:48.355 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T05:02:48.356 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:02:48.356 INFO:teuthology.orchestra.run.trial044.stdout:firewalld.service is not enabled 2026-02-18T05:02:48.356 INFO:teuthology.orchestra.run.trial044.stdout:Not possible to enable service . firewalld.service is not available 2026-02-18T05:02:48.363 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T05:02:48.363 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout disabled 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:firewalld.service is not enabled 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mgr to start... 2026-02-18T05:02:48.369 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mgr... 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsid": "0815dcbd-0c87-11f1-9bb9-d404e6e7d460", 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T05:02:48.672 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 0 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "trial044" 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-18T05:02:48.673 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T05:02:48.674 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T05:02:48.675 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T05:02:46:208181+0000", 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:48.676 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T05:02:46.208733+0000", 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:02:48.677 INFO:teuthology.orchestra.run.trial044.stdout:mgr not available, waiting (1/15)... 2026-02-18T05:02:49.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:48 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2580723717' entity='client.admin' 2026-02-18T05:02:49.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:48 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/615562833' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:02:50.956 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:50 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1301986751' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:02:50.966 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:50.966 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsid": "0815dcbd-0c87-11f1-9bb9-d404e6e7d460", 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 0 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T05:02:50.967 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "trial044" 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:50.968 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T05:02:50.969 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T05:02:46:208181+0000", 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T05:02:50.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T05:02:46.208733+0000", 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T05:02:50.971 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:02:50.972 INFO:teuthology.orchestra.run.trial044.stdout:mgr not available, waiting (2/15)... 2026-02-18T05:02:52.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: Activating manager daemon trial044.gyygsk 2026-02-18T05:02:52.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: mgrmap e2: trial044.gyygsk(active, starting, since 0.00293185s) 2026-02-18T05:02:52.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:02:52.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:02:52.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:52.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:51 trial044 ceph-mon[17637]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:53.248 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:53 trial044 ceph-mon[17637]: mgrmap e3: trial044.gyygsk(active, since 1.00553s) 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsid": "0815dcbd-0c87-11f1-9bb9-d404e6e7d460", 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "health": { 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-18T05:02:53.377 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 0 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-18T05:02:53.378 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "trial044" 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-18T05:02:53.379 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-18T05:02:53.380 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "btime": "2026-02-18T05:02:46:208181+0000", 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-18T05:02:53.381 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ], 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "modified": "2026-02-18T05:02:46.208733+0000", 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout }, 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:02:53.382 INFO:teuthology.orchestra.run.trial044.stdout:mgr is available 2026-02-18T05:02:53.739 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:53.739 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [global] 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout fsid = 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.44:3300,v1:10.20.193.44:6789] 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-18T05:02:53.740 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-18T05:02:53.741 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 2026-02-18T05:02:53.741 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout [osd] 2026-02-18T05:02:53.741 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-18T05:02:53.741 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-18T05:02:53.741 INFO:teuthology.orchestra.run.trial044.stdout:Enabling cephadm module... 2026-02-18T05:02:54.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:54 trial044 ceph-mon[17637]: mgrmap e4: trial044.gyygsk(active, since 2s) 2026-02-18T05:02:54.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:54 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2655889517' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:02:54.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:54 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3249429813' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-18T05:02:54.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:54 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3498596491' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-18T05:02:54.700 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:02:54.700 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "active_name": "trial044.gyygsk", 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for the mgr to restart... 2026-02-18T05:02:54.701 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mgr epoch 5... 2026-02-18T05:02:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:55 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3498596491' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-18T05:02:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:55 trial044 ceph-mon[17637]: mgrmap e5: trial044.gyygsk(active, since 3s) 2026-02-18T05:02:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:55 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/44374011' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T05:02:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:02:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: Activating manager daemon trial044.gyygsk 2026-02-18T05:02:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: osdmap e2: 0 total, 0 up, 0 in 2026-02-18T05:02:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: mgrmap e6: trial044.gyygsk(active, starting, since 0.002874s) 2026-02-18T05:02:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:02:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:02:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:02:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:02:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:02:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:57 trial044 ceph-mon[17637]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:02:58.092 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:02:58.092 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-18T05:02:58.092 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-18T05:02:58.092 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:02:58.092 INFO:teuthology.orchestra.run.trial044.stdout:mgr epoch 5 is available 2026-02-18T05:02:58.093 INFO:teuthology.orchestra.run.trial044.stdout:Verifying orchestrator module is enabled... 2026-02-18T05:02:58.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:58.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:58.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: Found migration_current of "None". Setting to last migration. 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: [18/Feb/2026:05:02:57] ENGINE Bus STARTING 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: mgrmap e7: trial044.gyygsk(active, since 1.00429s) 2026-02-18T05:02:58.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: [18/Feb/2026:05:02:58] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: [18/Feb/2026:05:02:58] ENGINE Client ('10.20.193.44', 46898) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: [18/Feb/2026:05:02:58] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: [18/Feb/2026:05:02:58] ENGINE Bus STARTED 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:02:58.681 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:58 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2556165100' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-18T05:02:59.090 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-18T05:02:59.090 INFO:teuthology.orchestra.run.trial044.stdout:Setting orchestrator backend to cephadm... 2026-02-18T05:02:59.834 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-18T05:02:59.834 INFO:teuthology.orchestra.run.trial044.stdout:Generating ssh key... 2026-02-18T05:03:00.240 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:59 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2556165100' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-18T05:03:00.241 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:59 trial044 ceph-mon[17637]: mgrmap e8: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:00.241 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:59 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:00.241 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:02:59 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:01.243 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:01.244 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:01.244 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:01.244 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: Generating ssh key... 2026-02-18T05:03:01.244 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:01.244 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:01 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:01.248 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1BnE10BxdqD8cdFf6H0RIdkQEjorh3rfZkv72Rf+cH ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:01.248 INFO:teuthology.orchestra.run.trial044.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-18T05:03:01.249 INFO:teuthology.orchestra.run.trial044.stdout:Adding key to root@localhost authorized_keys... 2026-02-18T05:03:01.249 INFO:teuthology.orchestra.run.trial044.stdout:Adding host trial044... 2026-02-18T05:03:02.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:02 trial044 ceph-mon[17637]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:03.202 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Added host 'trial044' with addr '10.20.193.44' 2026-02-18T05:03:03.202 INFO:teuthology.orchestra.run.trial044.stdout:Deploying mon service with default placement... 2026-02-18T05:03:03.423 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:03 trial044 ceph-mon[17637]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial044", "addr": "10.20.193.44", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:03.423 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:03 trial044 ceph-mon[17637]: Deploying cephadm binary to trial044 2026-02-18T05:03:03.423 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:03 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:03.424 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:03 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:03.595 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-18T05:03:03.595 INFO:teuthology.orchestra.run.trial044.stdout:Deploying mgr service with default placement... 2026-02-18T05:03:03.970 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-18T05:03:03.970 INFO:teuthology.orchestra.run.trial044.stdout:Deploying crash service with default placement... 2026-02-18T05:03:04.223 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:04 trial044 ceph-mon[17637]: Added host trial044 2026-02-18T05:03:04.223 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:04 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:04.223 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:04 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:04.223 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:04 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:04.223 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:04 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:04.349 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2026-02-18T05:03:04.349 INFO:teuthology.orchestra.run.trial044.stdout:Deploying ceph-exporter service with default placement... 2026-02-18T05:03:04.719 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2026-02-18T05:03:04.719 INFO:teuthology.orchestra.run.trial044.stdout:Deploying prometheus service with default placement... 2026-02-18T05:03:05.103 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2026-02-18T05:03:05.103 INFO:teuthology.orchestra.run.trial044.stdout:Deploying grafana service with default placement... 2026-02-18T05:03:05.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:05.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: Saving service mon spec with placement count:5 2026-02-18T05:03:05.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:05.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: Saving service mgr spec with placement count:2 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: Saving service crash spec with placement * 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:05.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:05 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:05.474 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2026-02-18T05:03:05.474 INFO:teuthology.orchestra.run.trial044.stdout:Deploying node-exporter service with default placement... 2026-02-18T05:03:05.852 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2026-02-18T05:03:05.852 INFO:teuthology.orchestra.run.trial044.stdout:Deploying alertmanager service with default placement... 2026-02-18T05:03:06.230 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: Saving service ceph-exporter spec with placement * 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: Saving service prometheus spec with placement count:1 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:06.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:06 trial044 ceph-mon[17637]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:06.967 INFO:teuthology.orchestra.run.trial044.stdout:Enabling the dashboard module... 2026-02-18T05:03:07.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:07.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: Saving service grafana spec with placement count:1 2026-02-18T05:03:07.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:07.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: Saving service node-exporter spec with placement * 2026-02-18T05:03:07.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:07.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: Saving service alertmanager spec with placement count:1 2026-02-18T05:03:07.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2359661194' entity='client.admin' 2026-02-18T05:03:07.680 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:07 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3855017281' entity='client.admin' 2026-02-18T05:03:08.630 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:08 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3131941135' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-18T05:03:08.757 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "active_name": "trial044.gyygsk", 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for the mgr to restart... 2026-02-18T05:03:08.758 INFO:teuthology.orchestra.run.trial044.stdout:Waiting for mgr epoch 9... 2026-02-18T05:03:09.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:09 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3131941135' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-18T05:03:09.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:09 trial044 ceph-mon[17637]: mgrmap e9: trial044.gyygsk(active, since 11s) 2026-02-18T05:03:09.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:09 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1112741319' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T05:03:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:03:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: osdmap e3: 0 total, 0 up, 0 in 2026-02-18T05:03:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: mgrmap e10: trial044.gyygsk(active, starting, since 0.00328102s) 2026-02-18T05:03:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:11.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:11.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:11.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:11.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:11.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:11 trial044 ceph-mon[17637]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:12.172 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout { 2026-02-18T05:03:12.173 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-18T05:03:12.173 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-18T05:03:12.173 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout } 2026-02-18T05:03:12.173 INFO:teuthology.orchestra.run.trial044.stdout:mgr epoch 9 is available 2026-02-18T05:03:12.173 INFO:teuthology.orchestra.run.trial044.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-18T05:03:12.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:12.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:12.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:12.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:12.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: mgrmap e11: trial044.gyygsk(active, since 1.00579s) 2026-02-18T05:03:12.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:12 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:13.322 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+jCCAuKgAwIBAgIUZsOTTYbq6c2Z6HQE2JGth+O9sFUwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDIxODA1MDMxM1oXDTI5\nMDIxNzA1MDMxM1owFzEVMBMGA1UEAwwMMTAuMjAuMTkzLjQ0MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAuorL1mcHeNdDNwqze/pS2uc8DwGo/JMDpiv9\nj46h5SRaygeypQ5mH/M0cqsAnZjfHfBDtBGsSgTP8Kq0Lxswby/IHTmKUdLjm/LX\nLsR+EflJ1vM5WKiWfDTcMwr4sxg24t85VmnQrrdEnk/ijw88qGV/iXQ9g1Epjz7Z\niC+bxQGHHNzJ4+Sl7KRAeBJW8r1zmeMdusBQHHrvSLrybuCtP/qOAozu4+MC2KB6\nVAE0LC9oslh/ABIpEujVyai1ZeveDMu2ud7I2PMyHtBq2QFY14gnAwa6Fb3k5bzO\ngjUvvnwq8UetKAIpsQNP7gsEkKURPCNO0VuRIt/h0UnRsguYdrM4YR6tIAV/eA/W\nnDkMmGRuZ5gwunVeD6D3YjHb7IJuA0iC7LjVuVFH7g85MkYzX06vowI2Yu0kmXtB\n1S8T6f1sPYkYaiRmE24bnRPBCsE1PjA97Yn/01NNH2myCmRQXkwmYs71i4lP5k+F\nnnsbKrlDET13jdipLjE+4/uzqMCyjz8z+ltXXGKPY+W9R6KxpUEx+nszFYImkln7\nZYKDwHJ7i4bFIJPaGx2o0/g2rpbzIUOxmVST3Jk9BANe6zq2dCDQzDY8TTR2R61N\n6DmdKNgV1TcMQiGL+ERDhvdUUsc/asCwH+N7BPvUB3bXh7eHfW2gLWCC7CTxou+M\nbuudwvUCAwEAAaM+MDwwLAYDVR0RBCUwI4IIdHJpYWwwNDSCEWRhc2hib2FyZF9z\nZXJ2ZXJzhwQKFMEsMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAHY+\nIYbpDGhw5Jl4Gh7nXV3c+ecfn7XQ9TkwTpagbyUD72Io9LnTcFPsl1YseMq/5xfF\na6+0rsilwirOcIPcRlLsVhQM+WR9GBbRwG0samGjmtWudBhLBCr2pA8Bov4utCsU\nOD0WkkhC/fcXQaWZFGxlYKgZ1sAPs5YrvYIr2ONWn3hWPJyEbaDM4FEWg+/d2ENL\nqYefO778pFF0bCuanruqZDPKJAH53cepa8DBsxb+oN2BHCPxi8+T4j2FWspRKSvt\nf7Ll4VogpIQTdi0EcN3O9YAuHbwTRHtyyAeWlAyKEVdiPq/CJ8zvNQiWe6Rch+eq\naUE8DK07BAQIKMb8mi/6sMMxeHn8j5eX8gReUhxEpdMQMzd/fbS/V/Ij8KnQZmkq\nIJfgWNp0W9r8BS2udB4O+x2LUkEBRPNcKy2npHKhIyS5lRMEiQqPp4Di46RH9LP3\n24bxWRIQMiW7EywsFHPVE4FiUBHbFejz7xpNW21c/gooVoRNggnUXqeDH9mryFOC\nhxDq13qO4hc6SxKS+cSxaJ4uuST6oDTN/HUyIPnOGukQyDyplni/SpJcd8kHB484\nFN0Vi0jJeHjgAGmygLpeUWeqgA4jgwSrpdFJv/5gkvVKF+idGXL988Q/KzrizfXU\n1HrYDT5xZCoyP+FsZBbpttT0ythV54w3Zgfw9DOr\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKgIBAAKCAgEAuorL1mcHeNdDNwqze/pS2uc8DwGo/JMDpiv9j46h5SRaygey\npQ5mH/M0cqsAnZjfHfBDtBGsSgTP8Kq0Lxswby/IHTmKUdLjm/LXLsR+EflJ1vM5\nWKiWfDTcMwr4sxg24t85VmnQrrdEnk/ijw88qGV/iXQ9g1Epjz7ZiC+bxQGHHNzJ\n4+Sl7KRAeBJW8r1zmeMdusBQHHrvSLrybuCtP/qOAozu4+MC2KB6VAE0LC9oslh/\nABIpEujVyai1ZeveDMu2ud7I2PMyHtBq2QFY14gnAwa6Fb3k5bzOgjUvvnwq8Uet\nKAIpsQNP7gsEkKURPCNO0VuRIt/h0UnRsguYdrM4YR6tIAV/eA/WnDkMmGRuZ5gw\nunVeD6D3YjHb7IJuA0iC7LjVuVFH7g85MkYzX06vowI2Yu0kmXtB1S8T6f1sPYkY\naiRmE24bnRPBCsE1PjA97Yn/01NNH2myCmRQXkwmYs71i4lP5k+FnnsbKrlDET13\njdipLjE+4/uzqMCyjz8z+ltXXGKPY+W9R6KxpUEx+nszFYImkln7ZYKDwHJ7i4bF\nIJPaGx2o0/g2rpbzIUOxmVST3Jk9BANe6zq2dCDQzDY8TTR2R61N6DmdKNgV1TcM\nQiGL+ERDhvdUUsc/asCwH+N7BPvUB3bXh7eHfW2gLWCC7CTxou+MbuudwvUCAwEA\nAQKCAgAJAnsl4oQHNMkXoiSucEC1jJrnU/qIIxxMrQM/fnFt/SYwFn8XtGz/o2In\nx6qX8geUt+4NMcKoheL6ihl5zPkMkGTnRHLce4W9b9Uvemi8ZYCeKSaJPwXwVH1D\nhIbOikoxsFEMo2pjheaCiZ6KWlS2WBtOKuxtqJXhR/UpvA2XTk5ATp78VXwjbyt4\noSoh6enox4IVawRzhlyC9Bnm0Q3icS+QCqPfIy/CrBLnIR0WpT42nvTuA/KH6fGp\nc8SPJP1B5kpFCpruH5DkJseCWQD5fVH6YMYhbAffhhGoqE5OB6FAq2g+7nElDjaQ\nwLzPtP6dcPcgQClFDfB83fE1hZSE0ghBzkA1uPBaOo/o4vkpxaNaVhuzgLjiUB6f\n2lB9MKdlPq9hrTKg/msSk3ALGvvMDMqW+aF6bj6h/FlM1qMbi5WkOG6hJ4RpfZ5K\nk1O2oLxl62ZxErT935VYeB1b8DmUZjK4jmdllyC7+uzCH4NRNwQvz1SpXRcvhXbo\n/VLvgm4MHpK8laCv4dw1iGvws9iANOtYvaR/W1vrz0UfbmL5vDUoj7KuMjIVDLMj\nUXwW2rpauJ6VfonsaqD/avoJVhYMrevlWJ6YG8G/p1DbfR1qLIMkgM9mW04lf1pO\nhooHXaiJnp0Yz+ABnSbNyMtBI99KReuFgN+JHPWYPSTKL06nAQKCAQEA41KkDDGw\nUn+pC8boSDNAW/ynDu+/z1BXUIaxkCW5X503AFWbk2q6Hbyn03tV2wJ5t7HKtLaT\nsiEZ53FnFnGsOmLkLqlp2HIOfqWTeGJP6wOAYJmay0gOhTf3Dbo1sNm7/EezYLyE\nzx0m+ue1D5JuFd5q0SuWILiJYdsT5X0y9r1rh/jSJFld9O8PbZlJgkqMXyfHTcaQ\nibR3W54h+iHutFIWswx25jZKRNMOQE/WubEO93OBNyDNW7PAMcn6671rOcAkjeMW\n/Bx3DnpeBddHw7gu5w1u7tIHSRq0MYk6LsCNGVUMVBewRh1RZ1/qxAe0m8k4826B\nzg3P2/kZQy4ZKQKCAQEA0hMmcJEdATo28tm44ju8oc1p7zVrFhAQArkoQKH3hMpI\nO0tEDSFiUyJg4ZhzyiypXs/RfcXKE6z/A0Pu2ywX6OX+tktJjwH0z8Z3d7UOKB6n\n1D/kA3UUcs9GwifQJtTwZwSHOZpm0dd7vuHe8CmRUMk/Q5rYvGy2VanQm2UV0DGk\n9abzxxCG9POgqFTb2jZ1nSti+eLy+UJLQt8zuH9bMMWlm2KQspPq022aNeaZoaKu\nojBxopCVPAUcB5jnPY2fjN5a8gEo38arAf47NyaOibEIH16mVfKY+XMvcTS6X5EK\nXbNU7/EfBbGDaRoSWJ0Mw//e7146voQT/L06lWO47QKCAQEAn7dKp36p4ezr+uhP\n/5py166WObpdS+2oy103mI3IxtMQ990uJ89O4OHSEJaRZgVBO71hLMMy1m7HYoOc\n6HoJhiRBKj/BrF/Gq1juWiDJAdg99KE3zyfbe+IsZKq2WoFAwSoncApETbiv0I3H\n+x7o1diluD0lh+vgKq7gNddXXWENEkXSb9OSXisw7dJLgY2bPqgWMiEXIIl5axeZ\ny8LXkj4y0K4rQ+hVGjInyyvNND6gw1+WJAOaBZovqUu+Tq+RjMvhYwdw+MWPKM71\nDKmLNIpN+ezISmeq0sQ+YqeGB58mA+xrcxIJudmTfkw4CG9ZiDNDHlZAQWQW7PkB\ntN/IsQKCAQEAg8xJ+KPCe8unP9PDQATUgvsaNF7iUZRAR0UdcPdtEF3M1Y6SIl7I\njnnqKH96XeSJWpetymf2MUP/NnA/gjh2w8LQfFRd0SAcFONifrMUL62UBAEVr+mb\nq7BJp3RNDp/YN/nKUSSCz7KOy6JwOWMK7ZFlZKfYxNa7yqDg5S2VcupCoXBeT40Z\n7sKPEC01RgGW5sWaskZlxGaIS2s3ys/0SXQnQ4aiW7ebw4xnDNwhlRw4zj7wfFqT\nlnVqMYYHxkF9UWcLzftWRpchIP387sv873wnKW87kn7C5PYUVMUNDPo1c7YYWvV/\nThYh6SXXTssxgCKfHrSSzIaW96FNCP7ovQKCAQEAxHm/yfO6QxudEsjcsXyaVakI\nM0VdUsOh25Mqb/os3HdAxlEPwm8ohwiMPnx6ykuQgdjI4eQVvB2UOufKkUo58w/p\nGNxNQPTHFrs81m8loieV5EeLtrJKHPVBfjVx6wDzUg9ZJKcpBPOjOsbt45W1XZxK\ngTAfNA8cxB4cNBGnQY880MFSEXvuOjacIkLKlERZlBGAiBHoai3L4AMNfQ6y/Mze\njPVMV+5JiEKAg0EaGT3ytozF5Gy0oQUaWXKieTbbJECN8fRvzVKKCP7Rk00pRa3S\nd8E7seqOUORnS5nVgaEKs3IkEzlVWM84D2kWV6kJqPFhXMOUJXi5HUNAMTOrfg==\n-----END RSA PRIVATE KEY-----\n"} 2026-02-18T05:03:13.345 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:11] ENGINE Bus STARTING 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:12] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:12] ENGINE Client ('10.20.193.44', 47976) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:12] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:03:13.346 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:13 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:12] ENGINE Bus STARTED 2026-02-18T05:03:13.695 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-18T05:03:14.071 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-18T05:03:14.071 INFO:teuthology.orchestra.run.trial044.stdout:Creating initial admin user... 2026-02-18T05:03:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:14 trial044 ceph-mon[17637]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:14 trial044 ceph-mon[17637]: mgrmap e12: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:14 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:14 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:14.645 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$QfPWLX7pOwa5nGhtypazR.PO5QhSmcuyYsPOT2Uq5Dgjz22N/wHyq", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771390994, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-18T05:03:14.645 INFO:teuthology.orchestra.run.trial044.stdout:Fetching dashboard port number... 2026-02-18T05:03:15.012 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stdout 8443 2026-02-18T05:03:15.020 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-18T05:03:15.020 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout disabled 2026-02-18T05:03:15.026 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-18T05:03:15.027 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:03:15.027 INFO:teuthology.orchestra.run.trial044.stdout:firewalld.service is not enabled 2026-02-18T05:03:15.027 INFO:teuthology.orchestra.run.trial044.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout:Ceph Dashboard is now available at: 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout: URL: https://trial044:8443/ 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout: User: admin 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout: Password: k7tgk34fvj 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.028 INFO:teuthology.orchestra.run.trial044.stdout:Saving cluster configuration to /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config directory 2026-02-18T05:03:15.143 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:15 trial044 ceph-mon[17637]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:15.144 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:15 trial044 ceph-mon[17637]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:15.144 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:15 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:15.144 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:15 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4150987611' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-18T05:03:15.448 INFO:teuthology.orchestra.run.trial044.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-18T05:03:15.448 INFO:teuthology.orchestra.run.trial044.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-18T05:03:15.448 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.448 INFO:teuthology.orchestra.run.trial044.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout:Or, if you are only running a single cluster on this host: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: ceph telemetry on 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout:For more information see: 2026-02-18T05:03:15.449 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.450 INFO:teuthology.orchestra.run.trial044.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-18T05:03:15.450 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:15.450 INFO:teuthology.orchestra.run.trial044.stdout:Bootstrap complete. 2026-02-18T05:03:15.456 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout static 2026-02-18T05:03:15.462 INFO:teuthology.orchestra.run.trial044.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-18T05:03:15.462 INFO:teuthology.orchestra.run.trial044.stdout:systemctl: stdout inactive 2026-02-18T05:03:15.462 INFO:teuthology.orchestra.run.trial044.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-18T05:03:15.610 INFO:tasks.cephadm:Fetching config... 2026-02-18T05:03:15.611 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:15.611 DEBUG:teuthology.orchestra.run.trial044:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-18T05:03:15.627 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-18T05:03:15.627 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:15.628 DEBUG:teuthology.orchestra.run.trial044:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-18T05:03:15.684 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-18T05:03:15.685 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:15.685 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/keyring of=/dev/stdout 2026-02-18T05:03:15.750 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-18T05:03:15.750 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:15.750 DEBUG:teuthology.orchestra.run.trial044:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-18T05:03:15.806 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-18T05:03:15.806 DEBUG:teuthology.orchestra.run.trial044:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1BnE10BxdqD8cdFf6H0RIdkQEjorh3rfZkv72Rf+cH ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-18T05:03:15.878 INFO:teuthology.orchestra.run.trial044.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1BnE10BxdqD8cdFf6H0RIdkQEjorh3rfZkv72Rf+cH ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:15.889 DEBUG:teuthology.orchestra.run.trial080:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1BnE10BxdqD8cdFf6H0RIdkQEjorh3rfZkv72Rf+cH ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-18T05:03:15.926 INFO:teuthology.orchestra.run.trial080.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1BnE10BxdqD8cdFf6H0RIdkQEjorh3rfZkv72Rf+cH ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:15.936 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-18T05:03:16.052 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:16.319 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:16 trial044 ceph-mon[17637]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:16.319 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:16 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3144379909' entity='client.admin' 2026-02-18T05:03:16.451 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-18T05:03:16.451 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-18T05:03:16.570 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:16.980 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial080 2026-02-18T05:03:16.981 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:03:16.981 DEBUG:teuthology.orchestra.run.trial080:> dd of=/etc/ceph/ceph.conf 2026-02-18T05:03:16.999 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:03:17.000 DEBUG:teuthology.orchestra.run.trial080:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:17.055 INFO:tasks.cephadm:Adding host trial080 to orchestrator... 2026-02-18T05:03:17.056 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch host add trial080 2026-02-18T05:03:17.171 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:17.534 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:17 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1853955016' entity='client.admin' 2026-02-18T05:03:17.534 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:17 trial044 ceph-mon[17637]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:17.534 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:17 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial080", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:18.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial044", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Deploying cephadm binary to trial080 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: mgrmap e13: trial044.gyygsk(active, since 6s) 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Updating trial044:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:18.872 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:18.873 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:18 trial044 ceph-mon[17637]: Deploying daemon ceph-exporter.trial044 on trial044 2026-02-18T05:03:18.949 INFO:teuthology.orchestra.run.trial044.stdout:Added host 'trial080' with addr '10.20.193.80' 2026-02-18T05:03:19.095 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-18T05:03:19.214 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:19.471 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:19.471 INFO:teuthology.orchestra.run.trial044.stdout:[{"addr": "10.20.193.44", "hostname": "trial044", "labels": [], "status": ""}, {"addr": "10.20.193.80", "hostname": "trial080", "labels": [], "status": ""}] 2026-02-18T05:03:19.698 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-18T05:03:19.699 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd crush tunables default 2026-02-18T05:03:19.905 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: Added host trial080 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:20.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:19 trial044 ceph-mon[17637]: Deploying daemon crash.trial044 on trial044 2026-02-18T05:03:20.998 INFO:teuthology.orchestra.run.trial044.stderr:adjusted tunables profile to default 2026-02-18T05:03:21.168 INFO:tasks.cephadm:Adding mon.trial044 on trial044 2026-02-18T05:03:21.169 INFO:tasks.cephadm:Adding mon.trial080 on trial080 2026-02-18T05:03:21.169 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch apply mon '2;trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080' 2026-02-18T05:03:21.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:03:21.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:21.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:21.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:21.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:21.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: Deploying daemon node-exporter.trial044 on trial044 2026-02-18T05:03:21.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:20 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/200341695' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-18T05:03:21.285 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:21.285 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:21.567 INFO:teuthology.orchestra.run.trial080.stdout:Scheduled mon update... 2026-02-18T05:03:21.708 DEBUG:teuthology.orchestra.run.trial080:mon.trial080> sudo journalctl -f -n 0 -u ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial080.service 2026-02-18T05:03:21.711 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:21.711 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:21.869 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:21.869 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:22.172 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:22.172 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:22.173 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/200341695' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:22.249 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: Deploying daemon alertmanager.trial044 on trial044 2026-02-18T05:03:22.250 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:21 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:23.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:22 trial044 ceph-mon[17637]: from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:23.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:22 trial044 ceph-mon[17637]: Saving service mon spec with placement trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080;count:2 2026-02-18T05:03:23.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:22 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/391199415' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:23.313 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:23.314 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:23.430 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:23.431 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:23.735 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:23.735 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:23.736 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:24.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:24.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:24 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2671956868' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:24.877 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:24.877 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:24.993 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:24.993 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:25.303 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:25.303 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:25.304 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:25.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:25 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-18T05:03:25.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:25 trial044 ceph-mon[17637]: Deploying daemon grafana.trial044 on trial044 2026-02-18T05:03:26.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:26 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2449338041' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:26.445 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:26.446 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:26.561 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:26.562 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:26.866 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:26.866 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:26.866 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:27.533 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:27 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:27.533 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:27 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/1256968079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:28.007 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:28.008 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:28.124 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:28.124 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:28.439 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:28.439 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:28.440 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:29.417 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:29.418 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:29 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3048616363' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:29.578 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:29.579 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:29.695 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:29.695 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:30.006 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:30.006 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:30.006 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:30.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:30 trial044 ceph-mon[17637]: Deploying daemon prometheus.trial044 on trial044 2026-02-18T05:03:30.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3582448257' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:31.147 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:31.148 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:31.263 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:31.263 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:31.576 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:31.577 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:31.577 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2034448884' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:32.679 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:32 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-18T05:03:32.718 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:32.718 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:32.836 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:32.836 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:33.150 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:33.150 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:33.151 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:34.294 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:34.294 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:34.412 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:34.412 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:34.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:34 trial044 ceph-mon[17637]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-18T05:03:34.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:34 trial044 ceph-mon[17637]: mgrmap e14: trial044.gyygsk(active, since 22s) 2026-02-18T05:03:34.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:34 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/4088313468' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:34.723 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:34.723 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:34.723 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:35.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:35 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/648632239' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:35.866 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:35.867 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:35.985 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:35.985 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:36.310 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:36.310 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:36.311 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:36.369 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:03:36.369 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: osdmap e5: 0 total, 0 up, 0 in 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: mgrmap e15: trial044.gyygsk(active, starting, since 0.00327609s) 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:36.370 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:37.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/1891381098' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:37.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:37.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:37.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:37 trial044 ceph-mon[17637]: mgrmap e16: trial044.gyygsk(active, since 1.00555s) 2026-02-18T05:03:37.453 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:37.453 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:37.583 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:37.583 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-18T05:03:37.951 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:37.951 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:37.951 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:38.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:36] ENGINE Bus STARTING 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:37] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial044", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:38.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:38 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3227666622' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:39.091 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:39.092 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:39.207 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:39.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:37] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:03:39.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:37] ENGINE Bus STARTED 2026-02-18T05:03:39.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: [18/Feb/2026:05:03:37] ENGINE Client ('10.20.193.44', 44576) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:03:39.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: mgrmap e17: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:39.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial080", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:39.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:39.518 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:39.518 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:39.518 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:40.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:40.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial080:/etc/ceph/ceph.conf 2026-02-18T05:03:40.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:40.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:40.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial044:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial080:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:40.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-18T05:03:40.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:40.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: Deploying daemon ceph-exporter.trial080 on trial080 2026-02-18T05:03:40.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:40 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/4036657860' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:40.695 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:40.695 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:40.814 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:41.114 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:41.114 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:41.114 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:41.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: Deploying daemon crash.trial080 on trial080 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/1537613714' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:41.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:41 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:42.259 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:42.260 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:42.473 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:42.818 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:42.818 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":1,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:02:44.927341Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-18T05:03:42.818 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 1 2026-02-18T05:03:42.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:42 trial044 ceph-mon[17637]: Deploying daemon node-exporter.trial080 on trial080 2026-02-18T05:03:43.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: Deploying daemon mgr.trial080.ldrwtp on trial080 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/613047345' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:43.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:43 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:43.960 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2026-02-18T05:03:43.960 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mon dump -f json 2026-02-18T05:03:44.082 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:44.472 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 systemd[1]: Starting Ceph mon.trial080 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460... 2026-02-18T05:03:44.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 podman[24119]: 2026-02-18 05:03:44.49693428 +0000 UTC m=+0.017100029 container create 1f84a73cfe296384d3d89dc7f0e333d36c605d84a36cd57a244d4d5d2872aab7 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial080, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=debug, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=20.2.1_2.17.26-baseline_2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2026-02-18T05:03:44.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 podman[24119]: 2026-02-18 05:03:44.54017734 +0000 UTC m=+0.060343089 container init 1f84a73cfe296384d3d89dc7f0e333d36c605d84a36cd57a244d4d5d2872aab7 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial080, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, CEPH_REF=20.2.1_2.17.26-baseline_2, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, ceph=True, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=debug, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 podman[24119]: 2026-02-18 05:03:44.543775233 +0000 UTC m=+0.063940982 container start 1f84a73cfe296384d3d89dc7f0e333d36c605d84a36cd57a244d4d5d2872aab7 (image=quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial080, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, ceph=True, OSD_FLAVOR=debug, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2) 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 bash[24119]: 1f84a73cfe296384d3d89dc7f0e333d36c605d84a36cd57a244d4d5d2872aab7 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 podman[24119]: 2026-02-18 05:03:44.489826152 +0000 UTC m=+0.009991911 image pull c2bc6184fe251d547d8a786d74766a31c45d6086d12bec721f3e5f2c58d3d0dc quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 systemd[1]: Started Ceph mon.trial080 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460. 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: set uid:gid to 167:167 (ceph:ceph) 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: ceph version 20.2.0-670-gadc19233 (adc1923395f2bcd6ae89b5d331d278364d1848ed) tentacle (stable - Debug), process ceph-mon, pid 7 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: pidfile_write: ignore empty --pid-file 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: load: jerasure load: lrc 2026-02-18T05:03:44.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: RocksDB version: 7.9.2 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Git sha 0 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Compile date 2026-02-17 18:17:02 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: DB SUMMARY 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: DB Session ID: U3OGJW5GGCHH6RIAXWP0 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: CURRENT file: CURRENT 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: IDENTITY file: IDENTITY 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: SST files in /var/lib/ceph/mon/ceph-trial080/store.db dir, Total Num: 0, files: 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-trial080/store.db: 000004.log size: 511 ; 2026-02-18T05:03:44.871 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.error_if_exists: 0 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.create_if_missing: 0 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.paranoid_checks: 1 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.env: 0x560608f96100 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.fs: PosixFileSystem 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.info_log: 0x56060f073d60 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_file_opening_threads: 16 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.statistics: (nil) 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.use_fsync: 0 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_log_file_size: 0 2026-02-18T05:03:44.872 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.keep_log_file_num: 1000 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.recycle_log_file_num: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_fallocate: 1 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_mmap_reads: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_mmap_writes: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.use_direct_reads: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.create_missing_column_families: 0 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.db_log_dir: 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.wal_dir: 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-18T05:03:44.873 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.advise_random_on_open: 1 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.db_write_buffer_size: 0 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.write_buffer_manager: 0x56060f076500 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-18T05:03:44.874 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.rate_limiter: (nil) 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.wal_recovery_mode: 2 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enable_thread_tracking: 0 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enable_pipelined_write: 0 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.unordered_write: 0 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.row_cache: None 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.wal_filter: None 2026-02-18T05:03:44.875 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_ingest_behind: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.two_write_queues: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.manual_wal_flush: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.wal_compression: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.atomic_flush: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.log_readahead_size: 0 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-18T05:03:44.876 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.best_efforts_recovery: 0 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.allow_data_in_errors: 0 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.db_host_id: __hostname__ 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_background_jobs: 2 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_background_compactions: -1 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_subcompactions: 1 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_total_wal_size: 0 2026-02-18T05:03:44.877 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_open_files: -1 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bytes_per_sync: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_readahead_size: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_background_flushes: -1 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Compression algorithms supported: 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kZSTD supported: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kXpressCompression supported: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kBZip2Compression supported: 0 2026-02-18T05:03:44.878 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kLZ4Compression supported: 1 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kZlibCompression supported: 1 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kLZ4HCCompression supported: 1 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: kSnappyCompression supported: 1 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-trial080/store.db/MANIFEST-000005 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.merge_operator: 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_filter: None 2026-02-18T05:03:44.879 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_filter_factory: None 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.sst_partitioner_factory: None 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56060f072520) 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: cache_index_and_filter_blocks: 1 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: pin_top_level_index_and_filter: 1 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: index_type: 0 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: data_block_index_type: 0 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: index_shortening: 1 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-18T05:03:44.880 INFO:journalctl@ceph.mon.trial080.trial080.stdout: checksum: 4 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: no_block_cache: 0 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_cache: 0x56060f093b90 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_cache_name: BinnedLRUCache 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_cache_options: 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: capacity : 536870912 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: num_shard_bits : 4 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: strict_capacity_limit : 0 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: high_pri_pool_ratio: 0.000 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_cache_compressed: (nil) 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: persistent_cache: (nil) 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_size: 4096 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_size_deviation: 10 2026-02-18T05:03:44.881 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_restart_interval: 16 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: index_block_restart_interval: 1 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: metadata_block_size: 4096 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: partition_filters: 0 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: use_delta_encoding: 1 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: filter_policy: bloomfilter 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: whole_key_filtering: 1 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: verify_compression: 0 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: read_amp_bytes_per_bit: 0 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: format_version: 5 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: enable_index_compression: 1 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: block_align: 0 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: max_auto_readahead_size: 262144 2026-02-18T05:03:44.882 INFO:journalctl@ceph.mon.trial080.trial080.stdout: prepopulate_block_cache: 0 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout: initial_auto_readahead_size: 8192 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout: num_file_reads_for_auto_readahead: 2 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.write_buffer_size: 33554432 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_write_buffer_number: 2 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression: NoCompression 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression: Disabled 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.prefix_extractor: nullptr 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.num_levels: 7 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-18T05:03:44.883 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.level: 32767 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.strategy: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-18T05:03:44.884 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.enabled: false 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.target_file_size_base: 67108864 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-18T05:03:44.885 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.arena_block_size: 1048576 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.disable_auto_compactions: 0 2026-02-18T05:03:44.886 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.inplace_update_support: 0 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-18T05:03:44.887 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.bloom_locality: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.max_successive_merges: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.paranoid_file_checks: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.force_consistency_checks: 1 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.report_bg_io_stats: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.ttl: 2592000 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-18T05:03:44.888 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enable_blob_files: false 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.min_blob_size: 0 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_file_size: 268435456 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.blob_file_starting_level: 0 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-trial080/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 87a9fe5a-6596-4a78-94d5-bcde86aa0bf6 2026-02-18T05:03:44.889 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771391024572620, "job": 1, "event": "recovery_started", "wal_files": [4]} 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771391024573051, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1647, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771391024, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "87a9fe5a-6596-4a78-94d5-bcde86aa0bf6", "db_session_id": "U3OGJW5GGCHH6RIAXWP0", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771391024573131, "job": 1, "event": "recovery_finished"} 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-trial080/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56060f096700 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: DB pointer 0x56060f0a8000 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout: ** DB Stats ** 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T05:03:44.890 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: ** Compaction Stats [default] ** 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-18T05:03:44.891 INFO:journalctl@ceph.mon.trial080.trial080.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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: ** Compaction Stats [default] ** 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.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.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-18T05:03:44.892 INFO:journalctl@ceph.mon.trial080.trial080.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Cumulative compaction: 0.00 GB write, 0.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Interval compaction: 0.00 GB write, 0.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.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 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Block cache BinnedLRUCache@0x56060f093b90#7 capacity: 512.00 MB usage: 0.23 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.6e-05 secs_since: 0 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.12 KB,2.23517e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080 does not exist in monmap, will attempt to join an existing cluster 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: using public_addr v2:10.20.193.80:0/0 -> [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: starting mon.trial080 rank -1 at public addrs [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] at bind addrs [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] mon_data /var/lib/ceph/mon/ceph-trial080 fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:44.893 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(???) e0 preinit fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).mds e1 new map 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).mds e1 print_map 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: e1 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: btime 2026-02-18T05:02:46:208181+0000 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: legacy client fscid: -1 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout: No filesystems configured 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2026-02-18T05:03:44.894 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mkfs 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial044 is new leader, mons trial044 in quorum (ranks 0) 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial044 is new leader, mons trial044 in quorum (ranks 0) 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: monmap epoch 1 2026-02-18T05:03:44.895 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: last_changed 2026-02-18T05:02:44.927341+0000 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: created 2026-02-18T05:02:44.927341+0000 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: min_mon_release 20 (tentacle) 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: election_strategy: 1 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: 0: [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] mon.trial044 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: fsmap 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: osdmap e1: 0 total, 0 up, 0 in 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e1: no daemons active 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2580723717' entity='client.admin' 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/615562833' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1301986751' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:44.896 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e2: trial044.gyygsk(active, starting, since 0.00293185s) 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14100 10.20.193.44:0/3484586205' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.897 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e3: trial044.gyygsk(active, since 1.00553s) 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e4: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2655889517' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3249429813' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3498596491' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3498596491' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e5: trial044.gyygsk(active, since 3s) 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/44374011' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: osdmap e2: 0 total, 0 up, 0 in 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e6: trial044.gyygsk(active, starting, since 0.002874s) 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:44.898 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Found migration_current of "None". Setting to last migration. 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:44.899 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:02:57] ENGINE Bus STARTING 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e7: trial044.gyygsk(active, since 1.00429s) 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:02:58] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:02:58] ENGINE Client ('10.20.193.44', 46898) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:02:58] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:02:58] ENGINE Bus STARTED 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2556165100' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2556165100' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e8: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:44.900 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Generating ssh key... 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial044", "addr": "10.20.193.44", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying cephadm binary to trial044 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.901 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Added host trial044 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.903 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service mon spec with placement count:5 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service mgr spec with placement count:2 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service crash spec with placement * 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service ceph-exporter spec with placement * 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service prometheus spec with placement count:1 2026-02-18T05:03:44.904 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14118 10.20.193.44:0/2652610033' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service grafana spec with placement count:1 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service node-exporter spec with placement * 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service alertmanager spec with placement count:1 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2359661194' entity='client.admin' 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3855017281' entity='client.admin' 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3131941135' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3131941135' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e9: trial044.gyygsk(active, since 11s) 2026-02-18T05:03:44.905 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1112741319' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: osdmap e3: 0 total, 0 up, 0 in 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e10: trial044.gyygsk(active, starting, since 0.00328102s) 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e11: trial044.gyygsk(active, since 1.00579s) 2026-02-18T05:03:44.906 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:11] ENGINE Bus STARTING 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:12] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:12] ENGINE Client ('10.20.193.44', 47976) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:12] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:12] ENGINE Bus STARTED 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e12: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4150987611' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-18T05:03:44.907 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3144379909' entity='client.admin' 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1853955016' entity='client.admin' 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial080", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial044", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying cephadm binary to trial080 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e13: trial044.gyygsk(active, since 6s) 2026-02-18T05:03:44.908 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon ceph-exporter.trial044 on trial044 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Added host trial080 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:44.909 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon crash.trial044 on trial044 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon node-exporter.trial044 on trial044 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/200341695' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/200341695' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: osdmap e4: 0 total, 0 up, 0 in 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.910 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon alertmanager.trial044 on trial044 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Saving service mon spec with placement trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080;count:2 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/391199415' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Generating cephadm-signed certificates for grafana_cert/grafana_key 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-18T05:03:44.911 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2671956868' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon grafana.trial044 on trial044 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2449338041' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/1256968079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3048616363' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon prometheus.trial044 on trial044 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3582448257' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.912 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2034448884' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14164 10.20.193.44:0/1854899558' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e14: trial044.gyygsk(active, since 22s) 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/4088313468' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/648632239' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Active manager daemon trial044.gyygsk restarted 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Activating manager daemon trial044.gyygsk 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: osdmap e5: 0 total, 0 up, 0 in 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e15: trial044.gyygsk(active, starting, since 0.00327609s) 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial044.gyygsk", "id": "trial044.gyygsk"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mds metadata"} : dispatch 2026-02-18T05:03:44.913 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Manager daemon trial044.gyygsk is now available 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/mirror_snapshot_schedule"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/trial044.gyygsk/trash_purge_schedule"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/1891381098' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e16: trial044.gyygsk(active, since 1.00555s) 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:36] ENGINE Bus STARTING 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:37] ENGINE Serving on http://10.20.193.44:8765 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.914 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial044", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3227666622' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:37] ENGINE Serving on https://10.20.193.44:7150 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:37] ENGINE Bus STARTED 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: [18/Feb/2026:05:03:37] ENGINE Client ('10.20.193.44', 44576) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mgrmap e17: trial044.gyygsk(active, since 2s) 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd/host:trial080", "name": "osd_memory_target"} : dispatch 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial080:/etc/ceph/ceph.conf 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:44.915 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial080:/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon ceph-exporter.trial080 on trial080 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/4036657860' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.916 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon crash.trial080 on trial080 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/1537613714' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon node-exporter.trial080 on trial080 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.917 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: Deploying daemon mgr.trial080.ldrwtp on trial080 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/613047345' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:44.918 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:44 trial080 ceph-mon[24170]: mon.trial080@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2026-02-18T05:03:49.610 INFO:teuthology.orchestra.run.trial080.stdout: 2026-02-18T05:03:49.610 INFO:teuthology.orchestra.run.trial080.stdout:{"epoch":2,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","modified":"2026-02-18T05:03:44.601141Z","created":"2026-02-18T05:02:44.927341Z","min_mon_release":20,"min_mon_release_name":"tentacle","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid","tentacle","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"trial044","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:3300","nonce":0},{"type":"v1","addr":"10.20.193.44:6789","nonce":0}]},"addr":"10.20.193.44:6789/0","public_addr":"10.20.193.44:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"trial080","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:3300","nonce":0},{"type":"v1","addr":"10.20.193.80:6789","nonce":0}]},"addr":"10.20.193.80:6789/0","public_addr":"10.20.193.80:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2026-02-18T05:03:49.611 INFO:teuthology.orchestra.run.trial080.stderr:dumped monmap epoch 2 2026-02-18T05:03:49.753 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-18T05:03:49.753 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-18T05:03:49.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: mon.trial044 calling monitor election 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/46901431' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial080.ldrwtp/crt"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: mon.trial080 calling monitor election 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.868 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: mon.trial044 is new leader, mons trial044,trial080 in quorum (ranks 0,1) 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: monmap epoch 2 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: last_changed 2026-02-18T05:03:44.601141+0000 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: created 2026-02-18T05:02:44.927341+0000 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: min_mon_release 20 (tentacle) 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: election_strategy: 1 2026-02-18T05:03:49.869 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: 0: [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] mon.trial044 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: 1: [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] mon.trial080 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: fsmap 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: osdmap e5: 0 total, 0 up, 0 in 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: mgrmap e17: trial044.gyygsk(active, since 13s) 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: overall HEALTH_OK 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: Standby manager daemon trial080.ldrwtp started 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial080.ldrwtp/key"} : dispatch 2026-02-18T05:03:49.870 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:49 trial080 ceph-mon[24170]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-18T05:03:49.874 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: mon.trial044 calling monitor election 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/46901431' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial080.ldrwtp/crt"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: mon.trial080 calling monitor election 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.922 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: mon.trial044 is new leader, mons trial044,trial080 in quorum (ranks 0,1) 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: monmap epoch 2 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: last_changed 2026-02-18T05:03:44.601141+0000 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: created 2026-02-18T05:02:44.927341+0000 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: min_mon_release 20 (tentacle) 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: election_strategy: 1 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: 0: [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] mon.trial044 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: 1: [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] mon.trial080 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: fsmap 2026-02-18T05:03:49.923 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: osdmap e5: 0 total, 0 up, 0 in 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: mgrmap e17: trial044.gyygsk(active, since 13s) 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: overall HEALTH_OK 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: Standby manager daemon trial080.ldrwtp started 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/trial080.ldrwtp/key"} : dispatch 2026-02-18T05:03:49.924 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:49 trial044 ceph-mon[17637]: from='mgr.? 10.20.193.80:0/3067476025' entity='mgr.trial080.ldrwtp' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-18T05:03:50.126 INFO:teuthology.orchestra.run.trial044.stdout:# minimal ceph.conf for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:50.126 INFO:teuthology.orchestra.run.trial044.stdout:[global] 2026-02-18T05:03:50.127 INFO:teuthology.orchestra.run.trial044.stdout: fsid = 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:03:50.127 INFO:teuthology.orchestra.run.trial044.stdout: mon_host = [v2:10.20.193.44:3300/0,v1:10.20.193.44:6789/0] [v2:10.20.193.80:3300/0,v1:10.20.193.80:6789/0] 2026-02-18T05:03:50.268 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-18T05:03:50.268 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:50.268 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/etc/ceph/ceph.conf 2026-02-18T05:03:50.293 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:50.293 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:50.357 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:03:50.358 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/etc/ceph/ceph.conf 2026-02-18T05:03:50.384 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:03:50.384 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-18T05:03:50.449 DEBUG:tasks.cephadm:set 0 configs 2026-02-18T05:03:50.449 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph config dump 2026-02-18T05:03:50.566 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:global dev auth_debug true 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:ed753f0ea50a628798b35db017c3c8a578b23968359d68e5fa3c66a5d4c2474c * 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:global dev debug_asserts_on_shutdown true 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:global basic log_to_file true 2026-02-18T05:03:50.819 INFO:teuthology.orchestra.run.trial044.stdout:global basic log_to_journald false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global basic log_to_stderr false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_allow_pool_delete true 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_cluster_log_to_file true 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-18T05:03:50.820 INFO:teuthology.orchestra.run.trial044.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:global dev ms_die_on_bug true 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:global dev ms_die_on_old_message true 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:global advanced osd_pool_default_erasure_code_profile plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced debug_mon 20/20 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced debug_ms 1/1 2026-02-18T05:03:50.821 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced debug_paxos 20/20 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_data_avail_warn 5 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced debug_mgr 20/20 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced debug_ms 1/1 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-18T05:03:50.822 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/dashboard/GRAFANA_API_SSL_VERIFY false * 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd dev bdev_debug_aio true 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced debug_ms 1/1 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced debug_osd 20/20 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_misdirected_ops true 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_op_order true 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-18T05:03:50.823 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_shutdown true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_memory_target_autotune true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_op_queue debug_random * 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_recover_clone_overlap true 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-18T05:03:50.824 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-18T05:03:50.825 INFO:teuthology.orchestra.run.trial044.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-18T05:03:50.825 INFO:teuthology.orchestra.run.trial044.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-18T05:03:50.825 INFO:teuthology.orchestra.run.trial044.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-18T05:03:50.825 INFO:teuthology.orchestra.run.trial044.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: mgrmap e18: trial044.gyygsk(active, since 13s), standbys: trial080.ldrwtp 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial080.ldrwtp", "id": "trial080.ldrwtp"} : dispatch 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3991129118' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:50.930 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:50.961 INFO:tasks.cephadm:Deploying OSDs... 2026-02-18T05:03:50.961 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:03:50.961 DEBUG:teuthology.orchestra.run.trial044:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:03:50.978 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-18T05:03:50.978 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/nvme3n1 2026-02-18T05:03:51.036 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/nvme3n1 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1328 Links: 1 Device type: 103,6 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:03:17.395824081 +0000 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:27.461238416 +0000 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:27.461238416 +0000 2026-02-18T05:03:51.037 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:26.556013840 +0000 2026-02-18T05:03:51.038 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-18T05:03:51.101 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:03:51.101 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:03:51.101 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000180474 s, 2.8 MB/s 2026-02-18T05:03:51.103 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-18T05:03:51.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: mgrmap e18: trial044.gyygsk(active, since 13s), standbys: trial080.ldrwtp 2026-02-18T05:03:51.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr metadata", "who": "trial080.ldrwtp", "id": "trial080.ldrwtp"} : dispatch 2026-02-18T05:03:51.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3991129118' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T05:03:51.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:51.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:03:51.159 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/nvme4n1 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/nvme4n1 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1340 Links: 1 Device type: 103,8 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:03:17.440822950 +0000 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:27.853068068 +0000 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:27.853068068 +0000 2026-02-18T05:03:51.217 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:26.683967454 +0000 2026-02-18T05:03:51.218 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-18T05:03:51.280 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:03:51.281 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:03:51.281 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000187978 s, 2.7 MB/s 2026-02-18T05:03:51.282 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-18T05:03:51.338 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/nvme5n1 2026-02-18T05:03:51.395 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/nvme5n1 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1352 Links: 1 Device type: 103,a 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:03:17.485821819 +0000 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:28.251058970 +0000 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:28.251058970 +0000 2026-02-18T05:03:51.396 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:26.815843761 +0000 2026-02-18T05:03:51.397 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-18T05:03:51.458 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:03:51.458 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:03:51.458 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.000173171 s, 3.0 MB/s 2026-02-18T05:03:51.460 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-18T05:03:51.516 DEBUG:teuthology.orchestra.run.trial044:> stat /dev/nvme6n1 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout: File: /dev/nvme6n1 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout:Device: 6h/6d Inode: 1364 Links: 1 Device type: 103,c 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout:Access: 2026-02-18 05:03:17.530820688 +0000 2026-02-18T05:03:51.572 INFO:teuthology.orchestra.run.trial044.stdout:Modify: 2026-02-18 05:02:28.650049355 +0000 2026-02-18T05:03:51.573 INFO:teuthology.orchestra.run.trial044.stdout:Change: 2026-02-18 05:02:28.650049355 +0000 2026-02-18T05:03:51.573 INFO:teuthology.orchestra.run.trial044.stdout: Birth: 2026-02-18 05:02:26.947720068 +0000 2026-02-18T05:03:51.573 DEBUG:teuthology.orchestra.run.trial044:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-18T05:03:51.636 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records in 2026-02-18T05:03:51.636 INFO:teuthology.orchestra.run.trial044.stderr:1+0 records out 2026-02-18T05:03:51.636 INFO:teuthology.orchestra.run.trial044.stderr:512 bytes copied, 0.00018362 s, 2.8 MB/s 2026-02-18T05:03:51.637 DEBUG:teuthology.orchestra.run.trial044:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-18T05:03:51.694 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:03:51.695 DEBUG:teuthology.orchestra.run.trial080:> dd if=/scratch_devs of=/dev/stdout 2026-02-18T05:03:51.713 DEBUG:teuthology.misc:devs=['/dev/nvme3n1', '/dev/nvme4n1', '/dev/nvme5n1', '/dev/nvme6n1'] 2026-02-18T05:03:51.713 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/nvme3n1 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/nvme3n1 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1335 Links: 1 Device type: 103,6 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:03:38.334098198 +0000 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:30.639613261 +0000 2026-02-18T05:03:51.770 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:30.639613261 +0000 2026-02-18T05:03:51.771 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:29.722642805 +0000 2026-02-18T05:03:51.771 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2026-02-18T05:03:51.833 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:03:51.833 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:03:51.833 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000172569 s, 3.0 MB/s 2026-02-18T05:03:51.835 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2026-02-18T05:03:51.892 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/nvme4n1 2026-02-18T05:03:51.948 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/nvme4n1 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1347 Links: 1 Device type: 103,8 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:03:38.370099212 +0000 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:31.036600470 +0000 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:31.036600470 +0000 2026-02-18T05:03:51.949 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:29.850638681 +0000 2026-02-18T05:03:51.950 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2026-02-18T05:03:52.011 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:03:52.012 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:03:52.012 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000169163 s, 3.0 MB/s 2026-02-18T05:03:52.013 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2026-02-18T05:03:52.054 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:52.054 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Updating trial080:/etc/ceph/ceph.conf 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Reconfiguring mon.trial044 (unknown last config time)... 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Reconfiguring daemon mon.trial044 on trial044 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Reconfiguring mgr.trial044.gyygsk (unknown last config time)... 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial044.gyygsk", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.055 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: Reconfiguring daemon mgr.trial044.gyygsk on trial044 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1276115147' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:52.056 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.071 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/nvme5n1 2026-02-18T05:03:52.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Updating trial044:/etc/ceph/ceph.conf 2026-02-18T05:03:52.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Updating trial080:/etc/ceph/ceph.conf 2026-02-18T05:03:52.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Updating trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Updating trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/config/ceph.conf 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Reconfiguring mon.trial044 (unknown last config time)... 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Reconfiguring daemon mon.trial044 on trial044 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Reconfiguring mgr.trial044.gyygsk (unknown last config time)... 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial044.gyygsk", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: Reconfiguring daemon mgr.trial044.gyygsk on trial044 2026-02-18T05:03:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1276115147' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial044", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial044", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:52.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:52.127 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/nvme5n1 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1359 Links: 1 Device type: 103,a 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:03:38.406100225 +0000 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:31.436587583 +0000 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:31.436587583 +0000 2026-02-18T05:03:52.128 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:29.978634558 +0000 2026-02-18T05:03:52.129 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/nvme5n1 of=/dev/null count=1 2026-02-18T05:03:52.190 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:03:52.190 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:03:52.190 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000170054 s, 3.0 MB/s 2026-02-18T05:03:52.192 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/nvme5n1 2026-02-18T05:03:52.249 DEBUG:teuthology.orchestra.run.trial080:> stat /dev/nvme6n1 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout: File: /dev/nvme6n1 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout:Device: 6h/6d Inode: 1371 Links: 1 Device type: 103,c 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout:Access: 2026-02-18 05:03:38.442101239 +0000 2026-02-18T05:03:52.306 INFO:teuthology.orchestra.run.trial080.stdout:Modify: 2026-02-18 05:02:31.833574793 +0000 2026-02-18T05:03:52.307 INFO:teuthology.orchestra.run.trial080.stdout:Change: 2026-02-18 05:02:31.833574793 +0000 2026-02-18T05:03:52.307 INFO:teuthology.orchestra.run.trial080.stdout: Birth: 2026-02-18 05:02:30.112630240 +0000 2026-02-18T05:03:52.307 DEBUG:teuthology.orchestra.run.trial080:> sudo dd if=/dev/nvme6n1 of=/dev/null count=1 2026-02-18T05:03:52.371 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records in 2026-02-18T05:03:52.371 INFO:teuthology.orchestra.run.trial080.stderr:1+0 records out 2026-02-18T05:03:52.371 INFO:teuthology.orchestra.run.trial080.stderr:512 bytes copied, 0.000166267 s, 3.1 MB/s 2026-02-18T05:03:52.372 DEBUG:teuthology.orchestra.run.trial080:> ! mount | grep -v devtmpfs | grep -q /dev/nvme6n1 2026-02-18T05:03:52.429 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch apply osd --all-available-devices 2026-02-18T05:03:52.583 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial080/config 2026-02-18T05:03:52.844 INFO:teuthology.orchestra.run.trial080.stdout:Scheduled osd.all-available-devices update... 2026-02-18T05:03:52.985 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2026-02-18T05:03:52.985 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:03:53.113 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:53.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring ceph-exporter.trial044 (monmap changed)... 2026-02-18T05:03:53.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring daemon ceph-exporter.trial044 on trial044 2026-02-18T05:03:53.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring crash.trial044 (monmap changed)... 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring daemon crash.trial044 on trial044 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring alertmanager.trial044 deps ['mgr.trial044.gyygsk', 'secure_monitoring_stack:False'] -> ['alertmanager.trial044', 'mgr.trial044.gyygsk', 'mgr.trial080.ldrwtp', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial044', 'mgr.trial080.ldrwtp'}) 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: Reconfiguring daemon alertmanager.trial044 on trial044 2026-02-18T05:03:53.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.166 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring ceph-exporter.trial044 (monmap changed)... 2026-02-18T05:03:53.166 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring daemon ceph-exporter.trial044 on trial044 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring crash.trial044 (monmap changed)... 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring daemon crash.trial044 on trial044 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring alertmanager.trial044 deps ['mgr.trial044.gyygsk', 'secure_monitoring_stack:False'] -> ['alertmanager.trial044', 'mgr.trial044.gyygsk', 'mgr.trial080.ldrwtp', 'secure_monitoring_stack:False'] (diff {'alertmanager.trial044', 'mgr.trial080.ldrwtp'}) 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: Reconfiguring daemon alertmanager.trial044 on trial044 2026-02-18T05:03:53.167 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:53.371 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:53.513 INFO:teuthology.orchestra.run.trial044.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} 2026-02-18T05:03:54.328 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:54.328 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: Marking host: trial044 for OSDSpec preview refresh. 2026-02-18T05:03:54.328 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: Marking host: trial080 for OSDSpec preview refresh. 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: Saving service osd.all-available-devices spec with placement * 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: Reconfiguring grafana.trial044 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial044', 'secure_monitoring_stack:False'] (diff {'prometheus.trial044'}) 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-18T05:03:54.329 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:54 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/621657590' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: from='client.14252 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:03:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: Marking host: trial044 for OSDSpec preview refresh. 2026-02-18T05:03:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: Marking host: trial080 for OSDSpec preview refresh. 2026-02-18T05:03:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: Saving service osd.all-available-devices spec with placement * 2026-02-18T05:03:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: Reconfiguring grafana.trial044 deps ['secure_monitoring_stack:False'] -> ['prometheus.trial044', 'secure_monitoring_stack:False'] (diff {'prometheus.trial044'}) 2026-02-18T05:03:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2026-02-18T05:03:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:54 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/621657590' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:54.515 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:03:54.640 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:54.909 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:55.051 INFO:teuthology.orchestra.run.trial044.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} 2026-02-18T05:03:55.128 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:55 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-18T05:03:55.129 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:55 trial044 ceph-mon[17637]: Reconfiguring daemon grafana.trial044 on trial044 2026-02-18T05:03:55.129 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:55.129 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:55.129 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:55 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1667955073' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:55 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2026-02-18T05:03:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:55 trial080 ceph-mon[24170]: Reconfiguring daemon grafana.trial044 on trial044 2026-02-18T05:03:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:55 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1667955073' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:56.052 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:03:56.176 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:56.277 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: Reconfiguring prometheus.trial044 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ceph-exporter.trial080'}) 2026-02-18T05:03:56.277 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: Reconfiguring daemon prometheus.trial044 on trial044 2026-02-18T05:03:56.277 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:56.277 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:56.278 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:56.278 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:56 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:56.426 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:56.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: Reconfiguring prometheus.trial044 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ceph-exporter.trial080'}) 2026-02-18T05:03:56.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: Reconfiguring daemon prometheus.trial044 on trial044 2026-02-18T05:03:56.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:56.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:56.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.trial080", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2026-02-18T05:03:56.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:56 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:56.569 INFO:teuthology.orchestra.run.trial044.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} 2026-02-18T05:03:57.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: Reconfiguring ceph-exporter.trial080 (monmap changed)... 2026-02-18T05:03:57.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: Reconfiguring daemon ceph-exporter.trial080 on trial080 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1359816957' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:57.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:57.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T05:03:57.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: Reconfiguring ceph-exporter.trial080 (monmap changed)... 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: Reconfiguring daemon ceph-exporter.trial080 on trial080 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.crash.trial080", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1359816957' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "mgr.trial080.ldrwtp", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mgr services"} : dispatch 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-18T05:03:57.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:57.570 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:03:57.685 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:57.943 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:58.087 INFO:teuthology.orchestra.run.trial044.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} 2026-02-18T05:03:58.219 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring crash.trial080 (monmap changed)... 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring daemon crash.trial080 on trial080 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring mgr.trial080.ldrwtp (monmap changed)... 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring daemon mgr.trial080.ldrwtp on trial080 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring mon.trial080 (monmap changed)... 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: Reconfiguring daemon mon.trial080 on trial080 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.220 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial044:9093"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial044:3000"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial044:9095"} : dispatch 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.221 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/685202700' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.222 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring crash.trial080 (monmap changed)... 2026-02-18T05:03:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring daemon crash.trial080 on trial080 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring mgr.trial080.ldrwtp (monmap changed)... 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring daemon mgr.trial080.ldrwtp on trial080 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring mon.trial080 (monmap changed)... 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: Reconfiguring daemon mon.trial080 on trial080 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial044:9093"} : dispatch 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://trial044:3000"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://trial044:9095"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:58.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/685202700' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:03:58.370 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.370 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.370 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:58.370 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.089 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:03:59.208 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:03:59.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial044:9093"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial044:3000"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial044:9095"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: Certificate for "grafana_cert (trial044)" is still valid for 1094 days. 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:03:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:59.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2026-02-18T05:03:59.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://trial044:9093"}]: dispatch 2026-02-18T05:03:59.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2026-02-18T05:03:59.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://trial044:3000"}]: dispatch 2026-02-18T05:03:59.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://trial044:9095"}]: dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: Certificate for "grafana_cert (trial044)" is still valid for 1094 days. 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:03:59.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:03:59.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:03:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:03:59.459 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:03:59.600 INFO:teuthology.orchestra.run.trial044.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} 2026-02-18T05:04:00.362 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/676608194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3430692397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"} : dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"} : dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"}]': finished 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: osdmap e6: 1 total, 0 up, 1 in 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2233700973' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0"} : dispatch 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2233700973' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0"}]': finished 2026-02-18T05:04:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: osdmap e7: 2 total, 0 up, 2 in 2026-02-18T05:04:00.364 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:00.364 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:00.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:00.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:00.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/676608194' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:00.388 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3430692397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"} : dispatch 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"} : dispatch 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acb00a1b-ad86-40ac-a17d-5d58ac146a0f"}]': finished 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: osdmap e6: 1 total, 0 up, 1 in 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2233700973' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0"} : dispatch 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2233700973' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0"}]': finished 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: osdmap e7: 2 total, 0 up, 2 in 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:00.389 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:00.601 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:00.723 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:00.981 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:01.127 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1771391039,"num_remapped_pgs":0} 2026-02-18T05:04:01.237 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:01 trial080 ceph-mon[24170]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:01.237 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:01 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/462291941' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:01.237 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:01 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3820332079' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:01.237 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:01 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3419928343' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:01.351 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:01 trial044 ceph-mon[17637]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:01.351 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:01 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/462291941' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:01.351 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:01 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3820332079' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:01.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:01 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3419928343' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:02.127 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2599362681' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"} : dispatch 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"} : dispatch 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"}]': finished 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: osdmap e8: 3 total, 0 up, 3 in 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:02.153 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2098118325' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e0585ea-0521-4c0e-b0cd-6d1ac4629be8"} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2098118325' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e0585ea-0521-4c0e-b0cd-6d1ac4629be8"}]': finished 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: osdmap e9: 4 total, 0 up, 4 in 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2875277074' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:02.154 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:02 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3037631990' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:02.249 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:02.374 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2599362681' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3c02ea9f-75d4-4f77-850d-3b017395c0cc"}]': finished 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: osdmap e8: 3 total, 0 up, 3 in 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2098118325' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e0585ea-0521-4c0e-b0cd-6d1ac4629be8"} : dispatch 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2098118325' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e0585ea-0521-4c0e-b0cd-6d1ac4629be8"}]': finished 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: osdmap e9: 4 total, 0 up, 4 in 2026-02-18T05:04:02.375 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:02.376 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:02.376 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:02.376 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:02.376 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2875277074' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:02.376 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:02 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3037631990' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:02.511 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:02.657 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1771391041,"num_remapped_pgs":0} 2026-02-18T05:04:03.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:03.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2759195554' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:03.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/872980575' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"}]': finished 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: osdmap e10: 5 total, 0 up, 5 in 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2036350747' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5625859e-6ede-4ac9-8678-43640abb6540"} : dispatch 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2036350747' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5625859e-6ede-4ac9-8678-43640abb6540"}]': finished 2026-02-18T05:04:03.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: osdmap e11: 6 total, 0 up, 6 in 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:03.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:03 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:03.391 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:03.391 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2759195554' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:03.391 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/872980575' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"} : dispatch 2026-02-18T05:04:03.391 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ac3f20f7-1ead-41f3-8457-5956e3a1b528"}]': finished 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: osdmap e10: 5 total, 0 up, 5 in 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2036350747' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5625859e-6ede-4ac9-8678-43640abb6540"} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2036350747' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5625859e-6ede-4ac9-8678-43640abb6540"}]': finished 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: osdmap e11: 6 total, 0 up, 6 in 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:03.392 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:03.393 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:03.393 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:03.393 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:03.393 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:03 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:03.658 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:03.778 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:04.030 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:04.189 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1771391042,"num_remapped_pgs":0} 2026-02-18T05:04:04.360 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2429980053' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3367209296' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1533412340' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3070540678' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"}]': finished 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: osdmap e12: 7 total, 0 up, 7 in 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:04.361 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:04.362 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:04.362 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:04.362 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:04.362 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:04.440 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2429980053' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:04.440 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3367209296' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:04.440 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:04.440 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1533412340' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3070540678' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1e97de66-d3c2-47cd-9b55-9922c5533fbb"}]': finished 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: osdmap e12: 7 total, 0 up, 7 in 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:04.441 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:04.442 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:05.190 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:05.310 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:05.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2946873998' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac2dc24b-40d8-4a1d-984a-980a80c5547e"} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2946873998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ac2dc24b-40d8-4a1d-984a-980a80c5547e"}]': finished 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: osdmap e13: 8 total, 0 up, 8 in 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:05.400 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:05.401 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/5821508' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:05.401 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:05 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1682874911' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:05.461 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2946873998' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ac2dc24b-40d8-4a1d-984a-980a80c5547e"} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2946873998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ac2dc24b-40d8-4a1d-984a-980a80c5547e"}]': finished 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: osdmap e13: 8 total, 0 up, 8 in 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:05.462 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:05.463 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/5821508' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:05.463 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:05 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1682874911' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-18T05:04:05.579 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:05.722 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:06.187 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:06 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1402241166' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:06.187 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:06 trial044 ceph-mon[17637]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:06.187 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:06 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:06.315 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:06 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1402241166' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:06.315 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:06 trial080 ceph-mon[24170]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:06.315 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:06 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:06.723 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:06.844 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:07.108 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: Deploying daemon osd.0 on trial080 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: Deploying daemon osd.1 on trial044 2026-02-18T05:04:07.230 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:07 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/272307347' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: Deploying daemon osd.0 on trial080 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: Deploying daemon osd.1 on trial044 2026-02-18T05:04:07.238 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:07 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/272307347' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:07.251 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:08.252 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:08.380 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:08.387 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:08 trial080 ceph-mon[24170]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:08.403 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:08 trial044 ceph-mon[17637]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:08.634 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:08.773 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3451341462' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:09.167 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:09 trial080 ceph-mon[24170]: Deploying daemon osd.2 on trial080 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3451341462' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:09.254 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:09 trial044 ceph-mon[17637]: Deploying daemon osd.2 on trial080 2026-02-18T05:04:09.775 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:09.894 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:10.134 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:10.371 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:10.409 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T05:04:10.409 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T05:04:10.409 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:10.409 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:10.409 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T05:04:10.410 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:10.410 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: Deploying daemon osd.3 on trial044 2026-02-18T05:04:10.410 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:10.410 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-18T05:04:10.410 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:10 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1937900608' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: Deploying daemon osd.3 on trial044 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-18T05:04:10.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:10 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1937900608' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: osdmap e14: 8 total, 0 up, 8 in 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:11.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:11 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:11.371 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:11.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-18T05:04:11.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-18T05:04:11.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: osdmap e14: 8 total, 0 up, 8 in 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:11.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:11 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:11.493 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:11.773 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:11.915 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:12.254 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:12.254 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: osdmap e15: 8 total, 0 up, 8 in 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:12.255 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: Deploying daemon osd.4 on trial080 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3451782199' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T05:04:12.256 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:12 trial080 ceph-mon[24170]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T05:04:12.351 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: osdmap e15: 8 total, 0 up, 8 in 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:12.352 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: Deploying daemon osd.4 on trial080 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3451782199' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T05:04:12.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:12 trial044 ceph-mon[17637]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-18T05:04:12.916 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:13.045 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:13.307 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:13.425 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:13.425 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899] boot 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668] boot 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: osdmap e16: 8 total, 2 up, 8 in 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:13.426 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: Deploying daemon osd.5 on trial044 2026-02-18T05:04:13.427 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:13 trial044 ceph-mon[17637]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T05:04:13.442 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:13.442 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:13.442 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:13.442 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: osd.0 [v2:10.20.193.80:6800/3778215899,v1:10.20.193.80:6801/3778215899] boot 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: osd.1 [v2:10.20.193.44:6802/612438668,v1:10.20.193.44:6803/612438668] boot 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: osdmap e16: 8 total, 2 up, 8 in 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-18T05:04:13.443 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: Deploying daemon osd.5 on trial044 2026-02-18T05:04:13.444 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:13 trial080 ceph-mon[24170]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-18T05:04:13.535 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":17,"num_osds":8,"num_up_osds":2,"osd_up_since":1771391052,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:14.329 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:14.329 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-18T05:04:14.329 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: osdmap e17: 8 total, 2 up, 8 in 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2019999869' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: pgmap v24: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:14.330 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:14 trial080 ceph-mon[24170]: Deploying daemon osd.6 on trial080 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: osdmap e17: 8 total, 2 up, 8 in 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2019999869' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: pgmap v24: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:14.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:14 trial044 ceph-mon[17637]: Deploying daemon osd.6 on trial080 2026-02-18T05:04:14.536 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:14.658 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:14.915 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:15.057 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":18,"num_osds":8,"num_up_osds":3,"osd_up_since":1771391054,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698] boot 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: osdmap e18: 8 total, 3 up, 8 in 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:15.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T05:04:15.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:15 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1111078621' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:15.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: osd.2 [v2:10.20.193.80:6808/3615064698,v1:10.20.193.80:6809/3615064698] boot 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: osdmap e18: 8 total, 3 up, 8 in 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:15.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T05:04:15.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-18T05:04:15.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:15 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1111078621' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:16.058 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:16.185 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956] boot 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: osdmap e19: 8 total, 4 up, 8 in 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:16.270 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: Deploying daemon osd.7 on trial044 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: pgmap v27: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:16.271 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:16 trial080 ceph-mon[24170]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:16.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: osd.3 [v2:10.20.193.44:6810/3380136956,v1:10.20.193.44:6811/3380136956] boot 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: osdmap e19: 8 total, 4 up, 8 in 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:16.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: Deploying daemon osd.7 on trial044 2026-02-18T05:04:16.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: pgmap v27: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-18T05:04:16.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:16.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:16 trial044 ceph-mon[17637]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-18T05:04:16.718 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:16.865 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":20,"num_osds":8,"num_up_osds":4,"osd_up_since":1771391055,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: osdmap e20: 8 total, 4 up, 8 in 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:17.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/92857582' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-18T05:04:17.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:17 trial044 ceph-mon[17637]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-18T05:04:17.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:17.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: osdmap e20: 8 total, 4 up, 8 in 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:17.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/92857582' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:17.619 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-18T05:04:17.619 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:17 trial080 ceph-mon[24170]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2026-02-18T05:04:17.866 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:17.988 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:18.247 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:18.390 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":22,"num_osds":8,"num_up_osds":6,"osd_up_since":1771391057,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":1} 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410] boot 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: osdmap e21: 8 total, 5 up, 8 in 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607] boot 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: osdmap e22: 8 total, 6 up, 8 in 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: pgmap v31: 1 pgs: 1 unknown; 0 B data, 132 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:18.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:18 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: osd.4 [v2:10.20.193.80:6816/2299476410,v1:10.20.193.80:6817/2299476410] boot 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: osdmap e21: 8 total, 5 up, 8 in 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]} : dispatch 2026-02-18T05:04:18.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.6836, "args": ["host=trial080", "root=default"]}]': finished 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: osd.5 [v2:10.20.193.44:6818/4288454607,v1:10.20.193.44:6819/4288454607] boot 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: osdmap e22: 8 total, 6 up, 8 in 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: pgmap v31: 1 pgs: 1 unknown; 0 B data, 132 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:18.618 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:18 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:19.392 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3870558657' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599] boot 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: osdmap e23: 8 total, 7 up, 8 in 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:19.420 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:19.421 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:19 trial044 ceph-mon[17637]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-18T05:04:19.517 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3870558657' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: osd.6 [v2:10.20.193.80:6824/1308784599,v1:10.20.193.80:6825/1308784599] boot 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: osdmap e23: 8 total, 7 up, 8 in 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:19.617 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:19 trial080 ceph-mon[24170]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2026-02-18T05:04:19.782 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:19.926 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":24,"num_osds":8,"num_up_osds":7,"osd_up_since":1771391058,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: osdmap e24: 8 total, 7 up, 8 in 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3538162213' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: pgmap v34: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.701 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:20 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.927 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: osdmap e24: 8 total, 7 up, 8 in 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial044", "root=default"]} : dispatch 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3538162213' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: pgmap v34: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.958 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:20.959 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:20.959 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:20 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:21.045 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:21.235 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53199]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53199]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53199]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53199]: pam_unix(sudo:session): session closed for user root 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53207]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53207]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53207]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T05:04:21.236 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 sudo[53207]: pam_unix(sudo:session): session closed for user root 2026-02-18T05:04:21.313 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:21.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37621]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-18T05:04:21.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37621]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T05:04:21.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37621]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T05:04:21.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37621]: pam_unix(sudo:session): session closed for user root 2026-02-18T05:04:21.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37627]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-18T05:04:21.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37627]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-18T05:04:21.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37627]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-18T05:04:21.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 sudo[37627]: pam_unix(sudo:session): session closed for user root 2026-02-18T05:04:21.456 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":25,"num_osds":8,"num_up_osds":7,"osd_up_since":1771391058,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:22.045 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:22.045 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: osdmap e25: 8 total, 7 up, 8 in 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.047 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:21 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3433186793' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:22.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.6836, "args": ["host=trial044", "root=default"]}]': finished 2026-02-18T05:04:22.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: osdmap e25: 8 total, 7 up, 8 in 2026-02-18T05:04:22.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:04:22.120 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial044"} : dispatch 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "mon metadata", "id": "trial080"} : dispatch 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.121 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:21 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3433186793' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:22.457 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd stat -f json 2026-02-18T05:04:22.574 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:22.822 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:22.822 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: purged_snaps scrub starts 2026-02-18T05:04:22.822 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: purged_snaps scrub ok 2026-02-18T05:04:22.822 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.822 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807] boot 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: osdmap e26: 8 total, 8 up, 8 in 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: Detected new or changed devices on trial080 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: Adjusting osd_memory_target on trial080 to 20467M 2026-02-18T05:04:22.823 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:22.824 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:22 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:22.962 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":26,"num_osds":8,"num_up_osds":8,"osd_up_since":1771391061,"num_in_osds":8,"osd_in_since":1771391044,"num_remapped_pgs":0} 2026-02-18T05:04:22.963 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T05:04:23.080 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:23.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: purged_snaps scrub starts 2026-02-18T05:04:23.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: purged_snaps scrub ok 2026-02-18T05:04:23.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:23.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: osd.7 [v2:10.20.193.44:6826/3993300807,v1:10.20.193.44:6827/3993300807] boot 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: osdmap e26: 8 total, 8 up, 8 in 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 186 MiB used, 4.8 TiB / 4.8 TiB avail 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: Detected new or changed devices on trial080 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: Adjusting osd_memory_target on trial080 to 20467M 2026-02-18T05:04:23.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:23.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:22 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:23.325 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:23.325 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":26,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","created":"2026-02-18T05:02:46.208327+0000","modified":"2026-02-18T05:04:21.698375+0000","last_up_change":"2026-02-18T05:04:21.698375+0000","last_in_change":"2026-02-18T05:04:04.298743+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":13,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-18T05:04:16.048211+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"acb00a1b-ad86-40ac-a17d-5d58ac146a0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6800","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6801","nonce":3778215899}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6802","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6803","nonce":3778215899}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6806","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6807","nonce":3778215899}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6804","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6805","nonce":3778215899}]},"public_addr":"10.20.193.80:6801/3778215899","cluster_addr":"10.20.193.80:6803/3778215899","heartbeat_back_addr":"10.20.193.80:6807/3778215899","heartbeat_front_addr":"10.20.193.80:6805/3778215899","state":["exists","up"]},{"osd":1,"uuid":"f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6802","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6803","nonce":612438668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6804","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6805","nonce":612438668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6808","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6809","nonce":612438668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6806","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6807","nonce":612438668}]},"public_addr":"10.20.193.44:6803/612438668","cluster_addr":"10.20.193.44:6805/612438668","heartbeat_back_addr":"10.20.193.44:6809/612438668","heartbeat_front_addr":"10.20.193.44:6807/612438668","state":["exists","up"]},{"osd":2,"uuid":"3c02ea9f-75d4-4f77-850d-3b017395c0cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6808","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6809","nonce":3615064698}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6810","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6811","nonce":3615064698}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6814","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6815","nonce":3615064698}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6812","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6813","nonce":3615064698}]},"public_addr":"10.20.193.80:6809/3615064698","cluster_addr":"10.20.193.80:6811/3615064698","heartbeat_back_addr":"10.20.193.80:6815/3615064698","heartbeat_front_addr":"10.20.193.80:6813/3615064698","state":["exists","up"]},{"osd":3,"uuid":"2e0585ea-0521-4c0e-b0cd-6d1ac4629be8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6810","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6811","nonce":3380136956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6812","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6813","nonce":3380136956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6816","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6817","nonce":3380136956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6814","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6815","nonce":3380136956}]},"public_addr":"10.20.193.44:6811/3380136956","cluster_addr":"10.20.193.44:6813/3380136956","heartbeat_back_addr":"10.20.193.44:6817/3380136956","heartbeat_front_addr":"10.20.193.44:6815/3380136956","state":["exists","up"]},{"osd":4,"uuid":"ac3f20f7-1ead-41f3-8457-5956e3a1b528","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6816","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6817","nonce":2299476410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6818","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6819","nonce":2299476410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6822","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6823","nonce":2299476410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6820","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6821","nonce":2299476410}]},"public_addr":"10.20.193.80:6817/2299476410","cluster_addr":"10.20.193.80:6819/2299476410","heartbeat_back_addr":"10.20.193.80:6823/2299476410","heartbeat_front_addr":"10.20.193.80:6821/2299476410","state":["exists","up"]},{"osd":5,"uuid":"5625859e-6ede-4ac9-8678-43640abb6540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6818","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6819","nonce":4288454607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6820","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6821","nonce":4288454607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6824","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6825","nonce":4288454607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6822","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6823","nonce":4288454607}]},"public_addr":"10.20.193.44:6819/4288454607","cluster_addr":"10.20.193.44:6821/4288454607","heartbeat_back_addr":"10.20.193.44:6825/4288454607","heartbeat_front_addr":"10.20.193.44:6823/4288454607","state":["exists","up"]},{"osd":6,"uuid":"1e97de66-d3c2-47cd-9b55-9922c5533fbb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6824","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6825","nonce":1308784599}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6826","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6827","nonce":1308784599}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6830","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6831","nonce":1308784599}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6828","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6829","nonce":1308784599}]},"public_addr":"10.20.193.80:6825/1308784599","cluster_addr":"10.20.193.80:6827/1308784599","heartbeat_back_addr":"10.20.193.80:6831/1308784599","heartbeat_front_addr":"10.20.193.80:6829/1308784599","state":["exists","up"]},{"osd":7,"uuid":"ac2dc24b-40d8-4a1d-984a-980a80c5547e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6826","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6827","nonce":3993300807}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6828","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6829","nonce":3993300807}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6832","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6833","nonce":3993300807}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6830","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6831","nonce":3993300807}]},"public_addr":"10.20.193.44:6827/3993300807","cluster_addr":"10.20.193.44:6829/3993300807","heartbeat_back_addr":"10.20.193.44:6833/3993300807","heartbeat_front_addr":"10.20.193.44:6831/3993300807","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.44:6800/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/835389221":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/4097023820":"2026-02-19T05:02:56.959145+0000","10.20.193.44:6800/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/2439843824":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3968978419":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3176259002":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6800/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3266565066":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/514982197":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/2115102799":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6801/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3292926811":"2026-02-19T05:03:35.839341+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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}} 2026-02-18T05:04:23.465 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-18T05:04:16.048211+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'nonprimary_shards': '{}', 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2026-02-18T05:04:23.465 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-18T05:04:23.581 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:23.825 INFO:teuthology.orchestra.run.trial044.stdout:pg_num: 1 2026-02-18T05:04:23.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:23 trial044 ceph-mon[17637]: Detected new or changed devices on trial044 2026-02-18T05:04:23.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:23 trial044 ceph-mon[17637]: Adjusting osd_memory_target on trial044 to 19699M 2026-02-18T05:04:23.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:23 trial044 ceph-mon[17637]: mgrmap e19: trial044.gyygsk(active, since 46s), standbys: trial080.ldrwtp 2026-02-18T05:04:23.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:23 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1274247659' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:23.948 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:23 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2313356608' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:23.967 INFO:tasks.cephadm:Setting up client nodes... 2026-02-18T05:04:23.967 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-18T05:04:24.080 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:24.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:23 trial080 ceph-mon[24170]: Detected new or changed devices on trial044 2026-02-18T05:04:24.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:23 trial080 ceph-mon[24170]: Adjusting osd_memory_target on trial044 to 19699M 2026-02-18T05:04:24.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:23 trial080 ceph-mon[24170]: mgrmap e19: trial044.gyygsk(active, since 46s), standbys: trial080.ldrwtp 2026-02-18T05:04:24.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:23 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1274247659' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-18T05:04:24.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:23 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2313356608' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:24.373 INFO:teuthology.orchestra.run.trial044.stdout:[client.0] 2026-02-18T05:04:24.373 INFO:teuthology.orchestra.run.trial044.stdout: key = AQBYSJVp9mYVFhAAdRA81hVmPM99K8I/OMRAbQ== 2026-02-18T05:04:24.514 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:04:24.514 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2026-02-18T05:04:24.514 DEBUG:teuthology.orchestra.run.trial044:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2026-02-18T05:04:24.549 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2026-02-18T05:04:24.667 INFO:teuthology.orchestra.run.trial080.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial080/config 2026-02-18T05:04:24.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:24 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2117456300' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-18T05:04:24.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:24 trial080 ceph-mon[24170]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 213 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:24.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:24 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1242954855' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:24.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:24 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1242954855' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-18T05:04:24.968 INFO:teuthology.orchestra.run.trial080.stdout:[client.1] 2026-02-18T05:04:24.968 INFO:teuthology.orchestra.run.trial080.stdout: key = AQBYSJVpWft0ORAAGLjzyBDMsLJTHyd0dAiqbg== 2026-02-18T05:04:25.109 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:04:25.109 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2026-02-18T05:04:25.109 DEBUG:teuthology.orchestra.run.trial080:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2026-02-18T05:04:25.145 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-18T05:04:25.169 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:24 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2117456300' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-18T05:04:25.169 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:24 trial044 ceph-mon[17637]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 213 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:25.169 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:24 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1242954855' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:25.169 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:24 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1242954855' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-18T05:04:25.263 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:25.520 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:25.659 INFO:teuthology.orchestra.run.trial044.stdout:[{"version":15,"timestamp":"2026-02-18T05:04:22.201529+0000","name":"","changes":[{"name":"osd/host:trial044/osd_memory_target","new_value":"20656749056"}]}] 2026-02-18T05:04:25.660 INFO:tasks.ceph_manager:config epoch is 15 2026-02-18T05:04:25.660 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-18T05:04:25.660 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-18T05:04:25.660 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-18T05:04:25.815 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:25.839 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:25 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/1079328637' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:25.839 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:25 trial044 ceph-mon[17637]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:25.840 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:25 trial044 ceph-mon[17637]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-18T05:04:25.840 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:25 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3882574290' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-18T05:04:26.093 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:26.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:25 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/1079328637' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:26.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:25 trial080 ceph-mon[24170]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2026-02-18T05:04:26.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:25 trial080 ceph-mon[24170]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2026-02-18T05:04:26.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:25 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3882574290' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-18T05:04:26.233 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":19,"flags":0,"active_gid":14217,"active_name":"trial044.gyygsk","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6800","nonce":2438218486},{"type":"v1","addr":"10.20.193.44:6801","nonce":2438218486}]},"active_addr":"10.20.193.44:6801/2438218486","active_change":"2026-02-18T05:03:35.839491+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":14238,"name":"trial080.ldrwtp","mgr_features":4544132024016699391,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","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.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics 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":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","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":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","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":[]},"crypto_caller":{"name":"crypto_caller","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","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.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"Elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"Haproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v3.6.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics 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":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","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":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","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":[]},"crypto_caller":{"name":"crypto_caller","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://10.20.193.44:8443/","prometheus":"http://10.20.193.44:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"tentacle":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"force_disabled_modules":{},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"10.20.193.44:0","nonce":2387016647}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.44:0","nonce":1074344309}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.44:0","nonce":1008265159}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.44:0","nonce":345154496}]}]} 2026-02-18T05:04:26.239 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-18T05:04:26.239 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-18T05:04:26.240 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T05:04:26.357 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:26.611 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:26.611 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":26,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","created":"2026-02-18T05:02:46.208327+0000","modified":"2026-02-18T05:04:21.698375+0000","last_up_change":"2026-02-18T05:04:21.698375+0000","last_in_change":"2026-02-18T05:04:04.298743+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":13,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-18T05:04:16.048211+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"acb00a1b-ad86-40ac-a17d-5d58ac146a0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6800","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6801","nonce":3778215899}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6802","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6803","nonce":3778215899}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6806","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6807","nonce":3778215899}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6804","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6805","nonce":3778215899}]},"public_addr":"10.20.193.80:6801/3778215899","cluster_addr":"10.20.193.80:6803/3778215899","heartbeat_back_addr":"10.20.193.80:6807/3778215899","heartbeat_front_addr":"10.20.193.80:6805/3778215899","state":["exists","up"]},{"osd":1,"uuid":"f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6802","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6803","nonce":612438668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6804","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6805","nonce":612438668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6808","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6809","nonce":612438668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6806","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6807","nonce":612438668}]},"public_addr":"10.20.193.44:6803/612438668","cluster_addr":"10.20.193.44:6805/612438668","heartbeat_back_addr":"10.20.193.44:6809/612438668","heartbeat_front_addr":"10.20.193.44:6807/612438668","state":["exists","up"]},{"osd":2,"uuid":"3c02ea9f-75d4-4f77-850d-3b017395c0cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6808","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6809","nonce":3615064698}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6810","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6811","nonce":3615064698}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6814","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6815","nonce":3615064698}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6812","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6813","nonce":3615064698}]},"public_addr":"10.20.193.80:6809/3615064698","cluster_addr":"10.20.193.80:6811/3615064698","heartbeat_back_addr":"10.20.193.80:6815/3615064698","heartbeat_front_addr":"10.20.193.80:6813/3615064698","state":["exists","up"]},{"osd":3,"uuid":"2e0585ea-0521-4c0e-b0cd-6d1ac4629be8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6810","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6811","nonce":3380136956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6812","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6813","nonce":3380136956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6816","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6817","nonce":3380136956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6814","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6815","nonce":3380136956}]},"public_addr":"10.20.193.44:6811/3380136956","cluster_addr":"10.20.193.44:6813/3380136956","heartbeat_back_addr":"10.20.193.44:6817/3380136956","heartbeat_front_addr":"10.20.193.44:6815/3380136956","state":["exists","up"]},{"osd":4,"uuid":"ac3f20f7-1ead-41f3-8457-5956e3a1b528","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6816","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6817","nonce":2299476410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6818","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6819","nonce":2299476410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6822","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6823","nonce":2299476410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6820","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6821","nonce":2299476410}]},"public_addr":"10.20.193.80:6817/2299476410","cluster_addr":"10.20.193.80:6819/2299476410","heartbeat_back_addr":"10.20.193.80:6823/2299476410","heartbeat_front_addr":"10.20.193.80:6821/2299476410","state":["exists","up"]},{"osd":5,"uuid":"5625859e-6ede-4ac9-8678-43640abb6540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6818","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6819","nonce":4288454607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6820","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6821","nonce":4288454607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6824","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6825","nonce":4288454607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6822","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6823","nonce":4288454607}]},"public_addr":"10.20.193.44:6819/4288454607","cluster_addr":"10.20.193.44:6821/4288454607","heartbeat_back_addr":"10.20.193.44:6825/4288454607","heartbeat_front_addr":"10.20.193.44:6823/4288454607","state":["exists","up"]},{"osd":6,"uuid":"1e97de66-d3c2-47cd-9b55-9922c5533fbb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6824","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6825","nonce":1308784599}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6826","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6827","nonce":1308784599}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6830","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6831","nonce":1308784599}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6828","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6829","nonce":1308784599}]},"public_addr":"10.20.193.80:6825/1308784599","cluster_addr":"10.20.193.80:6827/1308784599","heartbeat_back_addr":"10.20.193.80:6831/1308784599","heartbeat_front_addr":"10.20.193.80:6829/1308784599","state":["exists","up"]},{"osd":7,"uuid":"ac2dc24b-40d8-4a1d-984a-980a80c5547e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6826","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6827","nonce":3993300807}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6828","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6829","nonce":3993300807}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6832","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6833","nonce":3993300807}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6830","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6831","nonce":3993300807}]},"public_addr":"10.20.193.44:6827/3993300807","cluster_addr":"10.20.193.44:6829/3993300807","heartbeat_back_addr":"10.20.193.44:6833/3993300807","heartbeat_front_addr":"10.20.193.44:6831/3993300807","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.44:6800/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/835389221":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/4097023820":"2026-02-19T05:02:56.959145+0000","10.20.193.44:6800/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/2439843824":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3968978419":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3176259002":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6800/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3266565066":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/514982197":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/2115102799":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6801/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3292926811":"2026-02-19T05:03:35.839341+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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}} 2026-02-18T05:04:26.752 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-18T05:04:26.752 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd dump --format=json 2026-02-18T05:04:26.871 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:26.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:26 trial044 ceph-mon[17637]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:26.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:26 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/614214318' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-18T05:04:26.943 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:26 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1524102936' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:27.115 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:27.115 INFO:teuthology.orchestra.run.trial044.stdout:{"epoch":26,"fsid":"0815dcbd-0c87-11f1-9bb9-d404e6e7d460","created":"2026-02-18T05:02:46.208327+0000","modified":"2026-02-18T05:04:21.698375+0000","last_up_change":"2026-02-18T05:04:21.698375+0000","last_in_change":"2026-02-18T05:04:04.298743+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":13,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-18T05:04:16.048211+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"nonprimary_shards":"{}","options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"acb00a1b-ad86-40ac-a17d-5d58ac146a0f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6800","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6801","nonce":3778215899}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6802","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6803","nonce":3778215899}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6806","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6807","nonce":3778215899}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6804","nonce":3778215899},{"type":"v1","addr":"10.20.193.80:6805","nonce":3778215899}]},"public_addr":"10.20.193.80:6801/3778215899","cluster_addr":"10.20.193.80:6803/3778215899","heartbeat_back_addr":"10.20.193.80:6807/3778215899","heartbeat_front_addr":"10.20.193.80:6805/3778215899","state":["exists","up"]},{"osd":1,"uuid":"f0d7dd55-58ea-4657-8579-1a3bfb9cc2b0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6802","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6803","nonce":612438668}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6804","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6805","nonce":612438668}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6808","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6809","nonce":612438668}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6806","nonce":612438668},{"type":"v1","addr":"10.20.193.44:6807","nonce":612438668}]},"public_addr":"10.20.193.44:6803/612438668","cluster_addr":"10.20.193.44:6805/612438668","heartbeat_back_addr":"10.20.193.44:6809/612438668","heartbeat_front_addr":"10.20.193.44:6807/612438668","state":["exists","up"]},{"osd":2,"uuid":"3c02ea9f-75d4-4f77-850d-3b017395c0cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6808","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6809","nonce":3615064698}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6810","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6811","nonce":3615064698}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6814","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6815","nonce":3615064698}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6812","nonce":3615064698},{"type":"v1","addr":"10.20.193.80:6813","nonce":3615064698}]},"public_addr":"10.20.193.80:6809/3615064698","cluster_addr":"10.20.193.80:6811/3615064698","heartbeat_back_addr":"10.20.193.80:6815/3615064698","heartbeat_front_addr":"10.20.193.80:6813/3615064698","state":["exists","up"]},{"osd":3,"uuid":"2e0585ea-0521-4c0e-b0cd-6d1ac4629be8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6810","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6811","nonce":3380136956}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6812","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6813","nonce":3380136956}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6816","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6817","nonce":3380136956}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6814","nonce":3380136956},{"type":"v1","addr":"10.20.193.44:6815","nonce":3380136956}]},"public_addr":"10.20.193.44:6811/3380136956","cluster_addr":"10.20.193.44:6813/3380136956","heartbeat_back_addr":"10.20.193.44:6817/3380136956","heartbeat_front_addr":"10.20.193.44:6815/3380136956","state":["exists","up"]},{"osd":4,"uuid":"ac3f20f7-1ead-41f3-8457-5956e3a1b528","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6816","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6817","nonce":2299476410}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6818","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6819","nonce":2299476410}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6822","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6823","nonce":2299476410}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6820","nonce":2299476410},{"type":"v1","addr":"10.20.193.80:6821","nonce":2299476410}]},"public_addr":"10.20.193.80:6817/2299476410","cluster_addr":"10.20.193.80:6819/2299476410","heartbeat_back_addr":"10.20.193.80:6823/2299476410","heartbeat_front_addr":"10.20.193.80:6821/2299476410","state":["exists","up"]},{"osd":5,"uuid":"5625859e-6ede-4ac9-8678-43640abb6540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6818","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6819","nonce":4288454607}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6820","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6821","nonce":4288454607}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6824","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6825","nonce":4288454607}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6822","nonce":4288454607},{"type":"v1","addr":"10.20.193.44:6823","nonce":4288454607}]},"public_addr":"10.20.193.44:6819/4288454607","cluster_addr":"10.20.193.44:6821/4288454607","heartbeat_back_addr":"10.20.193.44:6825/4288454607","heartbeat_front_addr":"10.20.193.44:6823/4288454607","state":["exists","up"]},{"osd":6,"uuid":"1e97de66-d3c2-47cd-9b55-9922c5533fbb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6824","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6825","nonce":1308784599}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6826","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6827","nonce":1308784599}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6830","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6831","nonce":1308784599}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.80:6828","nonce":1308784599},{"type":"v1","addr":"10.20.193.80:6829","nonce":1308784599}]},"public_addr":"10.20.193.80:6825/1308784599","cluster_addr":"10.20.193.80:6827/1308784599","heartbeat_back_addr":"10.20.193.80:6831/1308784599","heartbeat_front_addr":"10.20.193.80:6829/1308784599","state":["exists","up"]},{"osd":7,"uuid":"ac2dc24b-40d8-4a1d-984a-980a80c5547e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6826","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6827","nonce":3993300807}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6828","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6829","nonce":3993300807}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6832","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6833","nonce":3993300807}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.44:6830","nonce":3993300807},{"type":"v1","addr":"10.20.193.44:6831","nonce":3993300807}]},"public_addr":"10.20.193.44:6827/3993300807","cluster_addr":"10.20.193.44:6829/3993300807","heartbeat_back_addr":"10.20.193.44:6833/3993300807","heartbeat_front_addr":"10.20.193.44:6831/3993300807","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.44:6800/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/835389221":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/4097023820":"2026-02-19T05:02:56.959145+0000","10.20.193.44:6800/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/2439843824":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3968978419":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3176259002":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:6801/3991250130":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6800/3049088454":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/3266565066":"2026-02-19T05:03:11.037746+0000","10.20.193.44:0/514982197":"2026-02-19T05:03:35.839341+0000","10.20.193.44:0/2115102799":"2026-02-19T05:03:35.839341+0000","10.20.193.44:6801/2013346978":"2026-02-19T05:02:56.959145+0000","10.20.193.44:0/3292926811":"2026-02-19T05:03:35.839341+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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}} 2026-02-18T05:04:27.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:26 trial080 ceph-mon[24170]: pgmap v39: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:27.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:26 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/614214318' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-18T05:04:27.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:26 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1524102936' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:27.254 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-18T05:04:27.254 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-18T05:04:27.254 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-18T05:04:27.254 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-18T05:04:27.254 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-18T05:04:27.255 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-18T05:04:27.255 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.6 flush_pg_stats 2026-02-18T05:04:27.255 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph tell osd.7 flush_pg_stats 2026-02-18T05:04:27.378 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.382 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.383 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.384 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.386 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.392 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.394 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.398 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.710 INFO:teuthology.orchestra.run.trial044.stdout:98784247811 2026-02-18T05:04:27.711 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-18T05:04:27.724 INFO:teuthology.orchestra.run.trial044.stdout:94489280516 2026-02-18T05:04:27.725 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-18T05:04:27.727 INFO:teuthology.orchestra.run.trial044.stdout:90194313220 2026-02-18T05:04:27.727 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-18T05:04:27.728 INFO:teuthology.orchestra.run.trial044.stdout:81604378630 2026-02-18T05:04:27.729 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-18T05:04:27.730 INFO:teuthology.orchestra.run.trial044.stdout:68719476741 2026-02-18T05:04:27.731 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-18T05:04:27.732 INFO:teuthology.orchestra.run.trial044.stdout:68719476741 2026-02-18T05:04:27.733 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-18T05:04:27.736 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:27 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3861383147' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:27.743 INFO:teuthology.orchestra.run.trial044.stdout:77309411332 2026-02-18T05:04:27.744 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-18T05:04:27.746 INFO:teuthology.orchestra.run.trial044.stdout:111669149700 2026-02-18T05:04:27.746 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-18T05:04:27.835 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.850 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.852 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.853 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.855 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.867 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.913 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:27.914 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:28.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:27 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3861383147' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-18T05:04:28.121 INFO:teuthology.orchestra.run.trial044.stdout:98784247810 2026-02-18T05:04:28.130 INFO:teuthology.orchestra.run.trial044.stdout:94489280515 2026-02-18T05:04:28.135 INFO:teuthology.orchestra.run.trial044.stdout:90194313218 2026-02-18T05:04:28.136 INFO:teuthology.orchestra.run.trial044.stdout:81604378628 2026-02-18T05:04:28.141 INFO:teuthology.orchestra.run.trial044.stdout:68719476740 2026-02-18T05:04:28.144 INFO:teuthology.orchestra.run.trial044.stdout:68719476740 2026-02-18T05:04:28.203 INFO:teuthology.orchestra.run.trial044.stdout:111669149699 2026-02-18T05:04:28.205 INFO:teuthology.orchestra.run.trial044.stdout:77309411331 2026-02-18T05:04:28.264 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247811 got 98784247810 for osd.6 2026-02-18T05:04:28.277 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280516 got 94489280515 for osd.5 2026-02-18T05:04:28.285 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313220 got 90194313218 for osd.4 2026-02-18T05:04:28.285 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378630 got 81604378628 for osd.3 2026-02-18T05:04:28.300 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476740 for osd.0 2026-02-18T05:04:28.303 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476740 for osd.1 2026-02-18T05:04:28.347 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411332 got 77309411331 for osd.2 2026-02-18T05:04:28.355 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149700 got 111669149699 for osd.7 2026-02-18T05:04:29.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:29.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1631625069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3658457352' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/664087234' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1666743142' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3527440977' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/394123275' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1639147905' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-18T05:04:29.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:28 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2395664974' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1631625069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3658457352' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/664087234' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1666743142' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3527440977' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/394123275' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1639147905' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-18T05:04:29.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:28 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2395664974' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T05:04:29.265 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.6 2026-02-18T05:04:29.278 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-18T05:04:29.286 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-18T05:04:29.286 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-18T05:04:29.301 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-18T05:04:29.304 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-18T05:04:29.348 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-18T05:04:29.356 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph osd last-stat-seq osd.7 2026-02-18T05:04:29.388 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.435 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.435 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.437 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.437 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.442 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.481 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.486 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:29.672 INFO:teuthology.orchestra.run.trial044.stdout:98784247811 2026-02-18T05:04:29.733 INFO:teuthology.orchestra.run.trial044.stdout:81604378630 2026-02-18T05:04:29.737 INFO:teuthology.orchestra.run.trial044.stdout:90194313220 2026-02-18T05:04:29.740 INFO:teuthology.orchestra.run.trial044.stdout:68719476741 2026-02-18T05:04:29.742 INFO:teuthology.orchestra.run.trial044.stdout:94489280516 2026-02-18T05:04:29.750 INFO:teuthology.orchestra.run.trial044.stdout:68719476741 2026-02-18T05:04:29.752 INFO:teuthology.orchestra.run.trial044.stdout:111669149701 2026-02-18T05:04:29.759 INFO:teuthology.orchestra.run.trial044.stdout:77309411332 2026-02-18T05:04:29.793 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:29 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4098993405' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-18T05:04:29.816 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247811 got 98784247811 for osd.6 2026-02-18T05:04:29.816 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.879 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378630 got 81604378630 for osd.3 2026-02-18T05:04:29.879 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.885 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313220 got 90194313220 for osd.4 2026-02-18T05:04:29.885 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.889 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476741 for osd.1 2026-02-18T05:04:29.889 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.898 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280516 got 94489280516 for osd.5 2026-02-18T05:04:29.899 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.899 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149700 got 111669149701 for osd.7 2026-02-18T05:04:29.899 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.906 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476741 got 68719476741 for osd.0 2026-02-18T05:04:29.907 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.908 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411332 got 77309411332 for osd.2 2026-02-18T05:04:29.908 DEBUG:teuthology.parallel:result is None 2026-02-18T05:04:29.908 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-18T05:04:29.908 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T05:04:30.062 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:30.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:29 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4098993405' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2026-02-18T05:04:30.305 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:30.306 INFO:teuthology.orchestra.run.trial044.stderr:dumped all 2026-02-18T05:04:30.447 INFO:teuthology.orchestra.run.trial044.stdout:{"pg_ready":true,"pg_map":{"version":41,"stamp":"2026-02-18T05:04:29.850541+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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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":212,"ondisk_log_size":212,"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":5871992832,"kb_used":220148,"kb_used_data":3692,"kb_used_omap":59,"kb_used_meta":215492,"kb_avail":5871772684,"statfs":{"total":6012920659968,"available":6012695228416,"internally_reserved":0,"allocated":3780608,"data_stored":2532336,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":61083,"internal_metadata":220664165},"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":"4.000823"},"pg_stats":[{"pgid":"1.0","version":"25'212","reported_seq":265,"reported_epoch":26,"state":"active+clean","last_fresh":"2026-02-18T05:04:21.703857+0000","last_change":"2026-02-18T05:04:20.696754+0000","last_active":"2026-02-18T05:04:21.703857+0000","last_peered":"2026-02-18T05:04:21.703857+0000","last_clean":"2026-02-18T05:04:21.703857+0000","last_became_active":"2026-02-18T05:04:20.696044+0000","last_became_peered":"2026-02-18T05:04:20.696044+0000","last_unstale":"2026-02-18T05:04:21.703857+0000","last_undegraded":"2026-02-18T05:04:21.703857+0000","last_fullsized":"2026-02-18T05:04:21.703857+0000","mapping_epoch":24,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":25,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T05:04:16.165735+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T05:04:16.165735+0000","last_clean_scrub_stamp":"2026-02-18T05:04:16.165735+0000","objects_scrubbed":0,"log_size":212,"log_dups_size":0,"ondisk_log_size":212,"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 @ 2026-02-19T07:21:52.415867+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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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},"up":[6,5,2],"acting":[6,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":6,"acting_primary":6,"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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":212,"ondisk_log_size":212,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":7,"up_from":26,"seq":111669149701,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4212,"internal_metadata":27586444},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":23,"seq":98784247812,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6174,"internal_metadata":27584482},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":22,"seq":94489280517,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":21,"seq":90194313220,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":19,"seq":81604378630,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8773,"internal_metadata":27581883},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411333,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8774,"internal_metadata":27581882},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":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":5,"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":6,"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}]}} 2026-02-18T05:04:30.448 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph pg dump --format=json 2026-02-18T05:04:30.565 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:30.808 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:30.809 INFO:teuthology.orchestra.run.trial044.stderr:dumped all 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2342351300' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/896765310' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3794935358' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/2693099327' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1574878633' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4193404415' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-18T05:04:30.931 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/1501264162' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T05:04:30.932 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:30 trial044 ceph-mon[17637]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:30.949 INFO:teuthology.orchestra.run.trial044.stdout:{"pg_ready":true,"pg_map":{"version":41,"stamp":"2026-02-18T05:04:29.850541+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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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":212,"ondisk_log_size":212,"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":5871992832,"kb_used":220148,"kb_used_data":3692,"kb_used_omap":59,"kb_used_meta":215492,"kb_avail":5871772684,"statfs":{"total":6012920659968,"available":6012695228416,"internally_reserved":0,"allocated":3780608,"data_stored":2532336,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":61083,"internal_metadata":220664165},"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":"4.000823"},"pg_stats":[{"pgid":"1.0","version":"25'212","reported_seq":265,"reported_epoch":26,"state":"active+clean","last_fresh":"2026-02-18T05:04:21.703857+0000","last_change":"2026-02-18T05:04:20.696754+0000","last_active":"2026-02-18T05:04:21.703857+0000","last_peered":"2026-02-18T05:04:21.703857+0000","last_clean":"2026-02-18T05:04:21.703857+0000","last_became_active":"2026-02-18T05:04:20.696044+0000","last_became_peered":"2026-02-18T05:04:20.696044+0000","last_unstale":"2026-02-18T05:04:21.703857+0000","last_undegraded":"2026-02-18T05:04:21.703857+0000","last_fullsized":"2026-02-18T05:04:21.703857+0000","mapping_epoch":24,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":25,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-18T05:04:16.165735+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-18T05:04:16.165735+0000","last_clean_scrub_stamp":"2026-02-18T05:04:16.165735+0000","objects_scrubbed":0,"log_size":212,"log_dups_size":0,"ondisk_log_size":212,"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 @ 2026-02-19T07:21:52.415867+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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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},"up":[6,5,2],"acting":[6,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":6,"acting_primary":6,"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":136,"num_read_kb":118,"num_write":255,"num_write_kb":5282,"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":1781760,"data_stored":1771104,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":212,"ondisk_log_size":212,"up":3,"acting":3,"num_store_stats":3}],"osd_stats":[{"osd":7,"up_from":26,"seq":111669149701,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4212,"internal_metadata":27586444},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":23,"seq":98784247812,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6174,"internal_metadata":27584482},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":22,"seq":94489280517,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":21,"seq":90194313220,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":19,"seq":81604378630,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8773,"internal_metadata":27581883},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411333,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":733999104,"kb_used":28036,"kb_used_data":824,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971068,"statfs":{"total":751615082496,"available":751586373632,"internally_reserved":0,"allocated":843776,"data_stored":685522,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":10075,"internal_metadata":27580581},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476742,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":733999104,"kb_used":27208,"kb_used_data":244,"kb_used_omap":8,"kb_used_meta":26935,"kb_avail":733971896,"statfs":{"total":751615082496,"available":751587221504,"internally_reserved":0,"allocated":249856,"data_stored":95154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8774,"internal_metadata":27581882},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":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":5,"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":6,"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}]}} 2026-02-18T05:04:30.950 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-18T05:04:30.950 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-18T05:04:30.950 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-18T05:04:30.951 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph health --format=json 2026-02-18T05:04:31.067 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:31.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2342351300' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-18T05:04:31.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/896765310' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-18T05:04:31.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3794935358' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-18T05:04:31.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/2693099327' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-18T05:04:31.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1574878633' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-18T05:04:31.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4193404415' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2026-02-18T05:04:31.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/1501264162' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-18T05:04:31.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:30 trial080 ceph-mon[24170]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:31.345 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:31.346 INFO:teuthology.orchestra.run.trial044.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-18T05:04:31.485 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-18T05:04:31.485 INFO:tasks.cephadm:Setup complete, yielding 2026-02-18T05:04:31.485 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:04:31.502 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:31.502 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-18T05:04:31.616 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:31.875 INFO:teuthology.orchestra.run.trial044.stdout:Backend: cephadm 2026-02-18T05:04:31.876 INFO:teuthology.orchestra.run.trial044.stdout:Available: Yes 2026-02-18T05:04:31.876 INFO:teuthology.orchestra.run.trial044.stdout:Paused: No 2026-02-18T05:04:31.996 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:31 trial044 ceph-mon[17637]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:31.996 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:31 trial044 ceph-mon[17637]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:31.997 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:31 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/46252584' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-18T05:04:32.019 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-18T05:04:32.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:31 trial080 ceph-mon[24170]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:32.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:31 trial080 ceph-mon[24170]: from='client.14572 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:32.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:31 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/46252584' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-18T05:04:32.135 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:alertmanager.trial044 trial044 *:9093,9094 running (39s) 11s ago 69s 26.8M - 0.28.1 91c01b3cec9b 10addd89752c 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter.trial044 trial044 *:9926 running (73s) 11s ago 73s 76.2M - 20.2.0-670-gadc19233 c2bc6184fe25 f16e703f58aa 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter.trial080 trial080 *:9926 running (51s) 11s ago 51s 76.3M - 20.2.0-670-gadc19233 c2bc6184fe25 cc7995fee2fb 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:crash.trial044 trial044 running (72s) 11s ago 72s 7666k - 20.2.0-670-gadc19233 c2bc6184fe25 348f8782677a 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:crash.trial080 trial080 running (51s) 11s ago 51s 7666k - 20.2.0-670-gadc19233 c2bc6184fe25 c3250dc38417 2026-02-18T05:04:32.389 INFO:teuthology.orchestra.run.trial044.stdout:grafana.trial044 trial044 *:3000 running (38s) 11s ago 64s 129M - 12.3.1 5cdab57891ea f2610120a3cf 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:mgr.trial044.gyygsk trial044 *:9283,8765,8443 running (104s) 11s ago 104s 615M - 20.2.0-670-gadc19233 c2bc6184fe25 237ac82200bf 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:mgr.trial080.ldrwtp trial080 *:8443,9283,8765 running (49s) 11s ago 48s 559M - 20.2.0-670-gadc19233 c2bc6184fe25 9fdbdb1850dd 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:mon.trial044 trial044 running (104s) 11s ago 106s 120M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 7c3a509e33a1 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:mon.trial080 trial080 running (47s) 11s ago 47s 114M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 1f84a73cfe29 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter.trial044 trial044 *:9100 running (71s) 11s ago 71s 12.5M - 1.9.1 255ec253085f 2c5de88d90e4 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter.trial080 trial080 *:9100 running (49s) 11s ago 49s 12.1M - 1.9.1 255ec253085f d2f10499309f 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.0 trial080 running (23s) 11s ago 23s 101M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 2fdc63842c4f 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.1 trial044 running (23s) 11s ago 23s 99.7M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 4bc559104347 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.2 trial080 running (21s) 11s ago 21s 100M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 77814acef6ae 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.3 trial044 running (20s) 11s ago 19s 100M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 7b4e1c6b57d9 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.4 trial080 running (18s) 11s ago 18s 99.5M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 994cd62bde69 2026-02-18T05:04:32.390 INFO:teuthology.orchestra.run.trial044.stdout:osd.5 trial044 running (17s) 11s ago 16s 101M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 d78350003b6f 2026-02-18T05:04:32.391 INFO:teuthology.orchestra.run.trial044.stdout:osd.6 trial080 running (16s) 11s ago 15s 99.9M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 f1cf12fd5efa 2026-02-18T05:04:32.391 INFO:teuthology.orchestra.run.trial044.stdout:osd.7 trial044 running (14s) 11s ago 14s 96.2M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 2b4092d2acec 2026-02-18T05:04:32.391 INFO:teuthology.orchestra.run.trial044.stdout:prometheus.trial044 trial044 *:9095 running (36s) 11s ago 60s 38.6M - 3.6.0 4fcecf061b74 10a28a21e379 2026-02-18T05:04:32.529 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-18T05:04:32.643 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:32.760 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:32 trial044 ceph-mon[17637]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:32.760 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:32 trial044 ceph-mon[17637]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:alertmanager ?:9093,9094 1/1 11s ago 86s count:1 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter ?:9926 2/2 12s ago 88s * 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:crash 2/2 12s ago 88s * 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:grafana ?:3000 1/1 11s ago 87s count:1 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:mgr 2/2 12s ago 89s count:2 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:mon 2/2 12s ago 71s trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080;count:2 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter ?:9100 2/2 12s ago 87s * 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:osd.all-available-devices 8 12s ago 40s * 2026-02-18T05:04:32.910 INFO:teuthology.orchestra.run.trial044.stdout:prometheus ?:9095 1/1 11s ago 87s count:1 2026-02-18T05:04:33.051 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-18T05:04:33.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:32 trial080 ceph-mon[24170]: pgmap v42: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:33.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:32 trial080 ceph-mon[24170]: from='client.14580 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:33.164 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:33.422 INFO:teuthology.orchestra.run.trial044.stdout:HOST ADDR LABELS STATUS 2026-02-18T05:04:33.423 INFO:teuthology.orchestra.run.trial044.stdout:trial044 10.20.193.44 2026-02-18T05:04:33.423 INFO:teuthology.orchestra.run.trial044.stdout:trial080 10.20.193.80 2026-02-18T05:04:33.423 INFO:teuthology.orchestra.run.trial044.stdout:2 hosts in cluster 2026-02-18T05:04:33.561 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-18T05:04:33.677 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:33.925 INFO:teuthology.orchestra.run.trial044.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50DB 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB511B 1788G No 11s ago Has a FileSystem, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme3n1 ssd Linux_38a805d7d79336575929 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme4n1 ssd Linux_c6e1f3e869c8bd4fc729 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme5n1 ssd Linux_d45230b47c52a535fa6a 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme6n1 ssd Linux_27be8e429351636005d3 700G No 11s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B000E7 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B00500 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme3n1 ssd Linux_9e8fc13609650657c001 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.926 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme4n1 ssd Linux_bf586bdda0b3173f492d 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.927 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme5n1 ssd Linux_9e08deab6148a6b9f8f3 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:33.927 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme6n1 ssd Linux_1be5f0c96904f83cb2ac 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.045 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:33 trial044 ceph-mon[17637]: from='client.14584 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.046 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:33 trial044 ceph-mon[17637]: from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.067 INFO:teuthology.run_tasks:Running task vip... 2026-02-18T05:04:34.089 INFO:tasks.vip:Allocating static IPs for each host... 2026-02-18T05:04:34.090 INFO:tasks.vip:peername 10.20.193.44 2026-02-18T05:04:34.150 INFO:tasks.vip:10.20.193.44 in 10.20.192.0/20, pos 299 2026-02-18T05:04:34.154 INFO:tasks.vip:trial044.front.sepia.ceph.com static 192.168.1.44, vnet 192.168.0.0/16 2026-02-18T05:04:34.154 INFO:tasks.vip:VIPs are [IPv4Address('192.168.17.44')] 2026-02-18T05:04:34.154 DEBUG:teuthology.orchestra.run.trial044:> sudo ip route ls 2026-02-18T05:04:34.154 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:33 trial080 ceph-mon[24170]: from='client.14584 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.154 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:33 trial080 ceph-mon[24170]: from='client.14588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.178 INFO:teuthology.orchestra.run.trial044.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.44 metric 102 2026-02-18T05:04:34.178 INFO:teuthology.orchestra.run.trial044.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.44 metric 102 2026-02-18T05:04:34.178 INFO:teuthology.orchestra.run.trial044.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-18T05:04:34.179 INFO:tasks.vip:Configuring 192.168.1.44 on trial044.front.sepia.ceph.com iface enp1s0f0... 2026-02-18T05:04:34.179 DEBUG:teuthology.orchestra.run.trial044:> sudo ip addr add 192.168.1.44/16 dev enp1s0f0 2026-02-18T05:04:34.243 INFO:tasks.vip:peername 10.20.193.80 2026-02-18T05:04:34.247 INFO:tasks.vip:10.20.193.80 in 10.20.192.0/20, pos 335 2026-02-18T05:04:34.255 INFO:tasks.vip:trial080.front.sepia.ceph.com static 192.168.1.80, vnet 192.168.0.0/16 2026-02-18T05:04:34.255 DEBUG:teuthology.orchestra.run.trial080:> sudo ip route ls 2026-02-18T05:04:34.282 INFO:teuthology.orchestra.run.trial080.stdout:default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.80 metric 102 2026-02-18T05:04:34.282 INFO:teuthology.orchestra.run.trial080.stdout:10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.80 metric 102 2026-02-18T05:04:34.282 INFO:teuthology.orchestra.run.trial080.stdout:169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-18T05:04:34.283 INFO:tasks.vip:Configuring 192.168.1.80 on trial080.front.sepia.ceph.com iface enp1s0f0... 2026-02-18T05:04:34.284 DEBUG:teuthology.orchestra.run.trial080:> sudo ip addr add 192.168.1.80/16 dev enp1s0f0 2026-02-18T05:04:34.349 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:04:34.363 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:34.364 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch device ls --refresh' 2026-02-18T05:04:34.481 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:34.729 INFO:teuthology.orchestra.run.trial044.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50DB 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB511B 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme3n1 ssd Linux_38a805d7d79336575929 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme4n1 ssd Linux_c6e1f3e869c8bd4fc729 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme5n1 ssd Linux_d45230b47c52a535fa6a 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme6n1 ssd Linux_27be8e429351636005d3 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B000E7 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:34.730 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B00500 1788G No 12s ago Has a FileSystem, LVM detected 2026-02-18T05:04:34.731 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme3n1 ssd Linux_9e8fc13609650657c001 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.731 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme4n1 ssd Linux_bf586bdda0b3173f492d 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.731 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme5n1 ssd Linux_9e08deab6148a6b9f8f3 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.731 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme6n1 ssd Linux_1be5f0c96904f83cb2ac 700G No 12s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:04:34.872 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-18T05:04:34.889 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:34.890 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2026-02-18T05:04:34.915 INFO:teuthology.orchestra.run.trial044.stderr:+ systemctl stop nfs-server 2026-02-18T05:04:34.921 INFO:tasks.vip:Running commands on role host.b host ubuntu@trial080.front.sepia.ceph.com 2026-02-18T05:04:34.922 DEBUG:teuthology.orchestra.run.trial080:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2026-02-18T05:04:34.947 INFO:teuthology.orchestra.run.trial080.stderr:+ systemctl stop nfs-server 2026-02-18T05:04:34.953 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:04:34.974 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:34.974 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2026-02-18T05:04:34.991 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:34 trial044 ceph-mon[17637]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.991 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:34 trial044 ceph-mon[17637]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:34.992 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:34 trial044 ceph-mon[17637]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:34.992 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:34 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:35.002 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:34 trial080 ceph-mon[24170]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:35.002 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:34 trial080 ceph-mon[24170]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:35.002 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:34 trial080 ceph-mon[24170]: from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:35.003 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:34 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:35.094 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:35.364 INFO:teuthology.orchestra.run.trial044.stdout:Scheduled rgw.foorgw update... 2026-02-18T05:04:35.512 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 192.168.17.44/16' 2026-02-18T05:04:35.674 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:35.928 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:35.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:35 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.937 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:35.938 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.938 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.938 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.938 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:35.938 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:35 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: Saving service rgw.foorgw spec with placement count:2 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.44/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:37.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:36 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.150 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:37.150 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: Saving service rgw.foorgw spec with placement count:2 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: pgmap v44: 1 pgs: 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='client.14608 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "192.168.17.44/16", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.151 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:36 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.972 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-18T05:04:37.988 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:37.988 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: osdmap e27: 8 total, 8 up, 8 in 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:37.990 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.991 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:37.991 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial080.hteady", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:37.991 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial080.hteady", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:37.991 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:37.991 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:37 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:38.016 INFO:teuthology.orchestra.run.trial044.stderr:+ dnf install -y python3-boto3 2026-02-18T05:04:38.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: osdmap e27: 8 total, 8 up, 8 in 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial080.hteady", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial080.hteady", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:37 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:38.308 INFO:teuthology.orchestra.run.trial044.stdout:Last metadata expiration check: 0:03:03 ago on Wed 18 Feb 2026 05:01:35 AM UTC. 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:Dependencies resolved. 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: Package Arch Version Repository Size 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:Installing: 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:Installing dependencies: 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:Transaction Summary 2026-02-18T05:04:38.391 INFO:teuthology.orchestra.run.trial044.stdout:================================================================================ 2026-02-18T05:04:38.392 INFO:teuthology.orchestra.run.trial044.stdout:Install 5 Packages 2026-02-18T05:04:38.392 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:38.392 INFO:teuthology.orchestra.run.trial044.stdout:Total download size: 6.6 M 2026-02-18T05:04:38.392 INFO:teuthology.orchestra.run.trial044.stdout:Installed size: 86 M 2026-02-18T05:04:38.392 INFO:teuthology.orchestra.run.trial044.stdout:Downloading Packages: 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: Deploying daemon rgw.foorgw.trial080.hteady on trial080 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: osdmap e28: 8 total, 8 up, 8 in 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: Saving service nfs.foo spec with placement count:1 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.870 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: pgmap v47: 33 pgs: 4 creating+peering, 28 unknown, 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial044.bzxxcf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial044.bzxxcf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:38.871 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:38 trial044 ceph-mon[17637]: Deploying daemon rgw.foorgw.trial044.bzxxcf on trial044 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: Deploying daemon rgw.foorgw.trial080.hteady on trial080 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: osdmap e28: 8 total, 8 up, 8 in 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: Saving service nfs.foo spec with placement count:1 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: Saving service ingress.nfs.foo spec with placement count:2 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: pgmap v47: 33 pgs: 4 creating+peering, 28 unknown, 1 active+clean; 577 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:39.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial044.bzxxcf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.trial044.bzxxcf", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:39.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:38 trial080 ceph-mon[24170]: Deploying daemon rgw.foorgw.trial044.bzxxcf on trial044 2026-02-18T05:04:39.409 INFO:teuthology.orchestra.run.trial044.stdout:(1/5): python3-jmespath-1.0.1-1.el9.noarch.rpm 739 kB/s | 48 kB 00:00 2026-02-18T05:04:39.751 INFO:teuthology.orchestra.run.trial044.stdout:(2/5): python3-boto3-1.28.62-1.el9.noarch.rpm 403 kB/s | 164 kB 00:00 2026-02-18T05:04:39.852 INFO:teuthology.orchestra.run.trial044.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 1.1 MB/s | 113 kB 00:00 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/2805107510' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: osdmap e29: 8 total, 8 up, 8 in 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: mgrmap e20: trial044.gyygsk(active, since 62s), standbys: trial080.ldrwtp 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: Saving service rgw.foorgw spec with placement count:2 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:39 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.131 INFO:teuthology.orchestra.run.trial044.stdout:(4/5): python3-botocore-1.31.62-2.el9.noarch.rp 8.5 MB/s | 6.1 MB 00:00 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/2805107510' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: osdmap e29: 8 total, 8 up, 8 in 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: mgrmap e20: trial044.gyygsk(active, since 62s), standbys: trial080.ldrwtp 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: Saving service rgw.foorgw spec with placement count:2 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:40.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:39 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:40.265 INFO:teuthology.orchestra.run.trial044.stdout:(5/5): python3-urllib3-1.26.5-7.el9.noarch.rpm 236 kB/s | 218 kB 00:00 2026-02-18T05:04:40.267 INFO:teuthology.orchestra.run.trial044.stdout:-------------------------------------------------------------------------------- 2026-02-18T05:04:40.267 INFO:teuthology.orchestra.run.trial044.stdout:Total 3.5 MB/s | 6.6 MB 00:01 2026-02-18T05:04:40.287 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction check 2026-02-18T05:04:40.294 INFO:teuthology.orchestra.run.trial044.stdout:Transaction check succeeded. 2026-02-18T05:04:40.294 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction test 2026-02-18T05:04:40.341 INFO:teuthology.orchestra.run.trial044.stdout:Transaction test succeeded. 2026-02-18T05:04:40.342 INFO:teuthology.orchestra.run.trial044.stdout:Running transaction 2026-02-18T05:04:40.411 INFO:teuthology.orchestra.run.trial044.stdout: Preparing : 1/1 2026-02-18T05:04:40.435 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 1/5 2026-02-18T05:04:41.006 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 2/5 2026-02-18T05:04:41.026 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2026-02-18T05:04:41.054 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2026-02-18T05:04:41.070 INFO:teuthology.orchestra.run.trial044.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: osdmap e30: 8 total, 8 up, 8 in 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: pgmap v50: 65 pgs: 13 creating+peering, 26 unknown, 26 active+clean; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:41.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:40 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: osdmap e30: 8 total, 8 up, 8 in 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: pgmap v50: 65 pgs: 13 creating+peering, 26 unknown, 26 active+clean; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:41.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:40 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:41.189 INFO:teuthology.orchestra.run.trial044.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2026-02-18T05:04:41.189 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 1/5 2026-02-18T05:04:41.189 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 2/5 2026-02-18T05:04:41.189 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2026-02-18T05:04:41.189 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2026-02-18T05:04:41.242 INFO:teuthology.orchestra.run.trial044.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2026-02-18T05:04:41.242 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout:Installed: 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout: python3-jmespath-1.0.1-1.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:41.243 INFO:teuthology.orchestra.run.trial044.stdout:Complete! 2026-02-18T05:04:41.273 DEBUG:teuthology.orchestra.run.trial044:> 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' 2026-02-18T05:04:41.337 INFO:teuthology.orchestra.run.trial044.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2026-02-18T05:04:41.428 INFO:teuthology.orchestra.run.trial044.stderr:Inferring fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:04:41.428 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:42.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: Checking dashboard <-> RGW credentials 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: osdmap e31: 8 total, 8 up, 8 in 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:41 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: Checking dashboard <-> RGW credentials 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: osdmap e31: 8 total, 8 up, 8 in 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2026-02-18T05:04:42.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:41 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:43.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:42 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:43.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:42 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:43.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:42 trial080 ceph-mon[24170]: osdmap e32: 8 total, 8 up, 8 in 2026-02-18T05:04:43.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:42 trial080 ceph-mon[24170]: pgmap v53: 97 pgs: 17 creating+peering, 45 unknown, 35 active+clean; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-18T05:04:43.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:42 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:43.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:42 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2026-02-18T05:04:43.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:42 trial044 ceph-mon[17637]: osdmap e32: 8 total, 8 up, 8 in 2026-02-18T05:04:43.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:42 trial044 ceph-mon[17637]: pgmap v53: 97 pgs: 17 creating+peering, 45 unknown, 35 active+clean; 577 KiB data, 214 MiB used, 5.5 TiB / 5.5 TiB avail; 0 B/s wr, 0 op/s 2026-02-18T05:04:44.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: osdmap e33: 8 total, 8 up, 8 in 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:43 trial080 ceph-mon[24170]: osdmap e34: 8 total, 8 up, 8 in 2026-02-18T05:04:44.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: osdmap e33: 8 total, 8 up, 8 in 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2026-02-18T05:04:44.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:43 trial044 ceph-mon[17637]: osdmap e34: 8 total, 8 up, 8 in 2026-02-18T05:04:45.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:44 trial080 ceph-mon[24170]: pgmap v56: 129 pgs: 23 creating+peering, 26 unknown, 80 active+clean; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 10 KiB/s rd, 1.7 KiB/s wr, 11 op/s 2026-02-18T05:04:45.178 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:44 trial044 ceph-mon[17637]: pgmap v56: 129 pgs: 23 creating+peering, 26 unknown, 80 active+clean; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 10 KiB/s rd, 1.7 KiB/s wr, 11 op/s 2026-02-18T05:04:46.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: osdmap e35: 8 total, 8 up, 8 in 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: osdmap e36: 8 total, 8 up, 8 in 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.119 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:45 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: osdmap e35: 8 total, 8 up, 8 in 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2026-02-18T05:04:46.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.80:0/3288599517' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: osdmap e36: 8 total, 8 up, 8 in 2026-02-18T05:04:46.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:46.180 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:45 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:47.039 INFO:teuthology.run_tasks:Running task python... 2026-02-18T05:04:47.056 INFO:tasks.python:Running python on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:47.056 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') 2026-02-18T05:04:47.056 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: pgmap v59: 161 pgs: 14 creating+peering, 46 unknown, 101 active+clean; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 13 KiB/s rd, 2.7 KiB/s wr, 17 op/s 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.103 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:46 trial044 ceph-mon[17637]: osdmap e37: 8 total, 8 up, 8 in 2026-02-18T05:04:47.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: pgmap v59: 161 pgs: 14 creating+peering, 46 unknown, 101 active+clean; 578 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 13 KiB/s rd, 2.7 KiB/s wr, 17 op/s 2026-02-18T05:04:47.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: from='client.? ' entity='client.rgw.foorgw.trial080.hteady' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/3633690842' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4118847284' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:47.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:46 trial080 ceph-mon[24170]: osdmap e37: 8 total, 8 up, 8 in 2026-02-18T05:04:48.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: Creating key for client.nfs.foo.0.0.trial044.vdwgmd 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: Ensuring 0 is in the ganesha grace table 2026-02-18T05:04:48.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:48.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:48 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:04:48.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: Creating key for client.nfs.foo.0.0.trial044.vdwgmd 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: Ensuring 0 is in the ganesha grace table 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2026-02-18T05:04:48.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2026-02-18T05:04:48.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2026-02-18T05:04:48.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.trial044.vdwgmd-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2026-02-18T05:04:48.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:48.431 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:48 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:04:49.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: Rados config object exists: conf-nfs.foo 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: Creating key for client.nfs.foo.0.0.trial044.vdwgmd-rgw 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: Bind address in nfs.foo.0.0.trial044.vdwgmd's ganesha conf is defaulting to empty 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: Deploying daemon nfs.foo.0.0.trial044.vdwgmd on trial044 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: pgmap v61: 161 pgs: 10 creating+peering, 16 unknown, 135 active+clean; 581 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 260 KiB/s rd, 5.5 KiB/s wr, 471 op/s 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: osdmap e38: 8 total, 8 up, 8 in 2026-02-18T05:04:49.369 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:49 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: Rados config object exists: conf-nfs.foo 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: Creating key for client.nfs.foo.0.0.trial044.vdwgmd-rgw 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: Bind address in nfs.foo.0.0.trial044.vdwgmd's ganesha conf is defaulting to empty 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: Deploying daemon nfs.foo.0.0.trial044.vdwgmd on trial044 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:49.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: pgmap v61: 161 pgs: 10 creating+peering, 16 unknown, 135 active+clean; 581 KiB data, 215 MiB used, 5.5 TiB / 5.5 TiB avail; 260 KiB/s rd, 5.5 KiB/s wr, 471 op/s 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "orch get-security-config"} : dispatch 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: osdmap e38: 8 total, 8 up, 8 in 2026-02-18T05:04:49.430 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:49 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2026-02-18T05:04:50.234 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:50.234 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: Deploying daemon haproxy.nfs.foo.trial044.skxbkl on trial044 2026-02-18T05:04:50.234 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-18T05:04:50.235 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: osdmap e39: 8 total, 8 up, 8 in 2026-02-18T05:04:50.235 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:50.235 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:50 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch get-security-config"}]: dispatch 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: Deploying daemon haproxy.nfs.foo.trial044.skxbkl on trial044 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: osdmap e39: 8 total, 8 up, 8 in 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2026-02-18T05:04:50.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:50 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: pgmap v64: 193 pgs: 5 creating+peering, 15 unknown, 173 active+clean; 586 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 789 KiB/s rd, 17 KiB/s wr, 1.43k op/s 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: osdmap e40: 8 total, 8 up, 8 in 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:51 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:51.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: pgmap v64: 193 pgs: 5 creating+peering, 15 unknown, 173 active+clean; 586 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 789 KiB/s rd, 17 KiB/s wr, 1.43k op/s 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: osdmap e40: 8 total, 8 up, 8 in 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:51.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:51 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:04:52.117 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:52 trial080 ceph-mon[24170]: Deploying daemon haproxy.nfs.foo.trial080.uiqmzl on trial080 2026-02-18T05:04:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:52 trial080 ceph-mon[24170]: osdmap e41: 8 total, 8 up, 8 in 2026-02-18T05:04:52.118 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:52 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-18T05:04:52.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:52 trial044 ceph-mon[17637]: Deploying daemon haproxy.nfs.foo.trial080.uiqmzl on trial080 2026-02-18T05:04:52.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:52 trial044 ceph-mon[17637]: osdmap e41: 8 total, 8 up, 8 in 2026-02-18T05:04:52.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:52 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2026-02-18T05:04:53.218 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:04:53.236 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:04:53.236 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2026-02-18T05:04:53.362 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:53.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: pgmap v67: 225 pgs: 5 creating+peering, 42 unknown, 178 active+clean; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 651 KiB/s rd, 15 KiB/s wr, 1.18k op/s 2026-02-18T05:04:53.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-18T05:04:53.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: osdmap e42: 8 total, 8 up, 8 in 2026-02-18T05:04:53.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-18T05:04:53.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:53 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: pgmap v67: 225 pgs: 5 creating+peering, 42 unknown, 178 active+clean; 588 KiB data, 216 MiB used, 5.5 TiB / 5.5 TiB avail; 651 KiB/s rd, 15 KiB/s wr, 1.18k op/s 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: osdmap e42: 8 total, 8 up, 8 in 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.387 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:53 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:53.808 INFO:teuthology.orchestra.run.trial044.stdout:{ 2026-02-18T05:04:53.808 INFO:teuthology.orchestra.run.trial044.stdout: "bind": "/foouser", 2026-02-18T05:04:53.808 INFO:teuthology.orchestra.run.trial044.stdout: "cluster": "foo", 2026-02-18T05:04:53.808 INFO:teuthology.orchestra.run.trial044.stdout: "mode": "RW", 2026-02-18T05:04:53.808 INFO:teuthology.orchestra.run.trial044.stdout: "path": "/", 2026-02-18T05:04:53.809 INFO:teuthology.orchestra.run.trial044.stdout: "squash": "none" 2026-02-18T05:04:53.809 INFO:teuthology.orchestra.run.trial044.stdout:} 2026-02-18T05:04:54.242 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-18T05:04:54.258 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2026-02-18T05:04:54.258 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch ls -f json 2026-02-18T05:04:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:54 trial080 ceph-mon[24170]: 192.168.17.44 is in 192.168.0.0/16 on trial044 interface enp1s0f0 2026-02-18T05:04:54.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:54 trial080 ceph-mon[24170]: 192.168.17.44 is in 192.168.0.0/16 on trial080 interface enp1s0f0 2026-02-18T05:04:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:54 trial080 ceph-mon[24170]: Deploying daemon keepalived.nfs.foo.trial044.osyylp on trial044 2026-02-18T05:04:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:54 trial080 ceph-mon[24170]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-18T05:04:54.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:54 trial080 ceph-mon[24170]: osdmap e43: 8 total, 8 up, 8 in 2026-02-18T05:04:54.376 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:54.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:54 trial044 ceph-mon[17637]: 192.168.17.44 is in 192.168.0.0/16 on trial044 interface enp1s0f0 2026-02-18T05:04:54.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:54 trial044 ceph-mon[17637]: 192.168.17.44 is in 192.168.0.0/16 on trial080 interface enp1s0f0 2026-02-18T05:04:54.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:54 trial044 ceph-mon[17637]: Deploying daemon keepalived.nfs.foo.trial044.osyylp on trial044 2026-02-18T05:04:54.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:54 trial044 ceph-mon[17637]: from='client.? 10.20.193.44:0/4159483065' entity='client.rgw.foorgw.trial044.bzxxcf' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2026-02-18T05:04:54.399 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:54 trial044 ceph-mon[17637]: osdmap e43: 8 total, 8 up, 8 in 2026-02-18T05:04:54.947 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:54.948 INFO:teuthology.orchestra.run.trial044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-18T05:03:06.100825Z", "last_refresh": "2026-02-18T05:04:40.020207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:40.531193Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-18T05:03:04.586607Z", "last_refresh": "2026-02-18T05:04:39.638673Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:41.344186Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-18T05:03:04.219252Z", "last_refresh": "2026-02-18T05:04:39.638734Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-18T05:03:05.347099Z", "last_refresh": "2026-02-18T05:04:40.020249Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:52.503708Z 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": "192.168.17.44/16"}, "status": {"created": "2026-02-18T05:04:37.825762Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.44/16"}}, {"events": ["2026-02-18T05:03:43.486775Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-18T05:03:03.840239Z", "last_refresh": "2026-02-18T05:04:39.638811Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:44.592060Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial044:10.20.193.44=trial044", "trial080:10.20.193.80=trial080"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-18T05:03:21.561411Z", "last_refresh": "2026-02-18T05:04:39.638846Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:04:48.164833Z 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": "2026-02-18T05:04:37.822937Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-18T05:03:42.641367Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-18T05:03:05.721306Z", "last_refresh": "2026-02-18T05:04:39.638774Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:52.842446Z 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": "2026-02-18T05:03:52.839246Z", "last_refresh": "2026-02-18T05:04:39.638879Z", "running": 8, "size": 8}}, {"events": ["2026-02-18T05:03:44.594588Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-18T05:03:04.975471Z", "last_refresh": "2026-02-18T05:04:40.020284Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:38.936726Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-18T05:04:38.933423Z", "last_refresh": "2026-02-18T05:04:39.639008Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-18T05:04:55.092 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-18T05:04:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='client.14702 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:55.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: pgmap v70: 225 pgs: 14 unknown, 211 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 135 KiB/s rd, 2.5 KiB/s wr, 242 op/s 2026-02-18T05:04:55.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:55.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:55.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:55.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:55.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:55 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='client.14702 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: pgmap v70: 225 pgs: 14 unknown, 211 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 135 KiB/s rd, 2.5 KiB/s wr, 242 op/s 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:55.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:55 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:56.092 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch ls -f json 2026-02-18T05:04:56.211 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:56.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:56 trial080 ceph-mon[24170]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:56.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:56 trial080 ceph-mon[24170]: 192.168.17.44 is in 192.168.0.0/16 on trial080 interface enp1s0f0 2026-02-18T05:04:56.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:56 trial080 ceph-mon[24170]: 192.168.17.44 is in 192.168.0.0/16 on trial044 interface enp1s0f0 2026-02-18T05:04:56.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:56 trial080 ceph-mon[24170]: Deploying daemon keepalived.nfs.foo.trial080.csrkse on trial080 2026-02-18T05:04:56.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:56 trial044 ceph-mon[17637]: from='client.14730 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:56.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:56 trial044 ceph-mon[17637]: 192.168.17.44 is in 192.168.0.0/16 on trial080 interface enp1s0f0 2026-02-18T05:04:56.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:56 trial044 ceph-mon[17637]: 192.168.17.44 is in 192.168.0.0/16 on trial044 interface enp1s0f0 2026-02-18T05:04:56.429 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:56 trial044 ceph-mon[17637]: Deploying daemon keepalived.nfs.foo.trial080.csrkse on trial080 2026-02-18T05:04:56.466 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:56.466 INFO:teuthology.orchestra.run.trial044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-18T05:03:06.100825Z", "last_refresh": "2026-02-18T05:04:40.020207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:40.531193Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-18T05:03:04.586607Z", "last_refresh": "2026-02-18T05:04:39.638673Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:41.344186Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-18T05:03:04.219252Z", "last_refresh": "2026-02-18T05:04:39.638734Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-18T05:03:05.347099Z", "last_refresh": "2026-02-18T05:04:40.020249Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:54.949241Z 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": "192.168.17.44/16"}, "status": {"created": "2026-02-18T05:04:37.825762Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.44/16"}}, {"events": ["2026-02-18T05:03:43.486775Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-18T05:03:03.840239Z", "last_refresh": "2026-02-18T05:04:39.638811Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:44.592060Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial044:10.20.193.44=trial044", "trial080:10.20.193.80=trial080"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-18T05:03:21.561411Z", "last_refresh": "2026-02-18T05:04:39.638846Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:04:48.164833Z 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": "2026-02-18T05:04:37.822937Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-18T05:03:42.641367Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-18T05:03:05.721306Z", "last_refresh": "2026-02-18T05:04:39.638774Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:52.842446Z 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": "2026-02-18T05:03:52.839246Z", "last_refresh": "2026-02-18T05:04:39.638879Z", "running": 8, "size": 8}}, {"events": ["2026-02-18T05:03:44.594588Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-18T05:03:04.975471Z", "last_refresh": "2026-02-18T05:04:40.020284Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:38.936726Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-18T05:04:38.933423Z", "last_refresh": "2026-02-18T05:04:39.639008Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-18T05:04:56.624 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-18T05:04:57.338 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:57 trial080 ceph-mon[24170]: pgmap v71: 225 pgs: 4 unknown, 221 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 99 KiB/s rd, 1.9 KiB/s wr, 179 op/s 2026-02-18T05:04:57.339 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:57.339 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:57 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:57.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:57 trial044 ceph-mon[17637]: pgmap v71: 225 pgs: 4 unknown, 221 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 99 KiB/s rd, 1.9 KiB/s wr, 179 op/s 2026-02-18T05:04:57.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:57.428 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:57 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:57.625 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch ls -f json 2026-02-18T05:04:57.765 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:58.024 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:58.024 INFO:teuthology.orchestra.run.trial044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-18T05:03:06.100825Z", "last_refresh": "2026-02-18T05:04:40.020207Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:40.531193Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-18T05:03:04.586607Z", "last_refresh": "2026-02-18T05:04:39.638673Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:41.344186Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-18T05:03:04.219252Z", "last_refresh": "2026-02-18T05:04:39.638734Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-18T05:03:05.347099Z", "last_refresh": "2026-02-18T05:04:40.020249Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:57.422301Z 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": "192.168.17.44/16"}, "status": {"created": "2026-02-18T05:04:37.825762Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "192.168.17.44/16"}}, {"events": ["2026-02-18T05:03:43.486775Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-18T05:03:03.840239Z", "last_refresh": "2026-02-18T05:04:39.638811Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:44.592060Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial044:10.20.193.44=trial044", "trial080:10.20.193.80=trial080"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-18T05:03:21.561411Z", "last_refresh": "2026-02-18T05:04:39.638846Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:04:48.164833Z 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": "2026-02-18T05:04:37.822937Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2026-02-18T05:03:42.641367Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-18T05:03:05.721306Z", "last_refresh": "2026-02-18T05:04:39.638774Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:52.842446Z 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": "2026-02-18T05:03:52.839246Z", "last_refresh": "2026-02-18T05:04:39.638879Z", "running": 8, "size": 8}}, {"events": ["2026-02-18T05:03:44.594588Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-18T05:03:04.975471Z", "last_refresh": "2026-02-18T05:04:40.020284Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:38.936726Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-18T05:04:38.933423Z", "last_refresh": "2026-02-18T05:04:39.639008Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-18T05:04:58.168 INFO:tasks.cephadm:nfs.foo has 0/1 2026-02-18T05:04:58.303 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:58.304 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:58 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='client.14734 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:58.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:04:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:58.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:58 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:04:59.170 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch ls -f json 2026-02-18T05:04:59.289 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: pgmap v72: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 766 B/s wr, 46 op/s 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:59.338 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:59.339 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.339 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:59.339 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:04:59 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: pgmap v72: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 766 B/s wr, 46 op/s 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='client.14738 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:04:59.368 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:04:59 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:04:59.545 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:04:59.546 INFO:teuthology.orchestra.run.trial044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-18T05:03:06.100825Z", "last_refresh": "2026-02-18T05:04:58.869988Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:40.531193Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-18T05:03:04.586607Z", "last_refresh": "2026-02-18T05:04:58.320707Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:41.344186Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-18T05:03:04.219252Z", "last_refresh": "2026-02-18T05:04:58.320774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-18T05:03:05.347099Z", "last_refresh": "2026-02-18T05:04:58.870026Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:57.422301Z 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": "192.168.17.44/16"}, "status": {"created": "2026-02-18T05:04:37.825762Z", "last_refresh": "2026-02-18T05:04:58.321127Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.44/16"}}, {"events": ["2026-02-18T05:03:43.486775Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-18T05:03:03.840239Z", "last_refresh": "2026-02-18T05:04:58.320856Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:44.592060Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial044:10.20.193.44=trial044", "trial080:10.20.193.80=trial080"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-18T05:03:21.561411Z", "last_refresh": "2026-02-18T05:04:58.320895Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:04:58.890289Z 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": "2026-02-18T05:04:37.822937Z", "last_refresh": "2026-02-18T05:04:58.870214Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:42.641367Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-18T05:03:05.721306Z", "last_refresh": "2026-02-18T05:04:58.320817Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:52.842446Z 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": "2026-02-18T05:03:52.839246Z", "last_refresh": "2026-02-18T05:04:58.320931Z", "running": 8, "size": 8}}, {"events": ["2026-02-18T05:03:44.594588Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-18T05:03:04.975471Z", "last_refresh": "2026-02-18T05:04:58.870055Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:38.936726Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-18T05:04:38.933423Z", "last_refresh": "2026-02-18T05:04:58.321073Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-18T05:04:59.688 INFO:tasks.cephadm:nfs.foo has 1/1 2026-02-18T05:04:59.688 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2026-02-18T05:04:59.704 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2026-02-18T05:04:59.705 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph orch ls -f json 2026-02-18T05:04:59.825 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:00.078 INFO:teuthology.orchestra.run.trial044.stdout: 2026-02-18T05:05:00.078 INFO:teuthology.orchestra.run.trial044.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2026-02-18T05:03:06.100825Z", "last_refresh": "2026-02-18T05:04:58.869988Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:40.531193Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2026-02-18T05:03:04.586607Z", "last_refresh": "2026-02-18T05:04:58.320707Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:41.344186Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2026-02-18T05:03:04.219252Z", "last_refresh": "2026-02-18T05:04:58.320774Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2026-02-18T05:03:05.347099Z", "last_refresh": "2026-02-18T05:04:58.870026Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:57.422301Z 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": "192.168.17.44/16"}, "status": {"created": "2026-02-18T05:04:37.825762Z", "last_refresh": "2026-02-18T05:04:58.321127Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "192.168.17.44/16"}}, {"events": ["2026-02-18T05:03:43.486775Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2026-02-18T05:03:03.840239Z", "last_refresh": "2026-02-18T05:04:58.320856Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:44.592060Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["trial044:10.20.193.44=trial044", "trial080:10.20.193.80=trial080"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2026-02-18T05:03:21.561411Z", "last_refresh": "2026-02-18T05:04:58.320895Z", "running": 2, "size": 2}}, {"events": ["2026-02-18T05:04:58.890289Z 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": "2026-02-18T05:04:37.822937Z", "last_refresh": "2026-02-18T05:04:58.870214Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:03:42.641367Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2026-02-18T05:03:05.721306Z", "last_refresh": "2026-02-18T05:04:58.320817Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2026-02-18T05:03:52.842446Z 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": "2026-02-18T05:03:52.839246Z", "last_refresh": "2026-02-18T05:04:58.320931Z", "running": 8, "size": 8}}, {"events": ["2026-02-18T05:03:44.594588Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2026-02-18T05:03:04.975471Z", "last_refresh": "2026-02-18T05:04:58.870055Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2026-02-18T05:04:38.936726Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_exit_timeout_secs": 120, "rgw_frontend_port": 8800}, "status": {"created": "2026-02-18T05:04:38.933423Z", "last_refresh": "2026-02-18T05:04:58.321073Z", "ports": [8800], "running": 2, "size": 2}}] 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: Reconfiguring prometheus.trial044 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'ingress', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ingress'}) 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: Reconfiguring daemon prometheus.trial044 on trial044 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.116 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:00 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.225 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2026-02-18T05:05:00.225 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-18T05:05:00.242 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:05:00.242 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2026-02-18T05:05:00.268 INFO:teuthology.orchestra.run.trial044.stderr:+ mkdir /mnt/foo 2026-02-18T05:05:00.270 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2026-02-18T05:05:00.335 INFO:teuthology.orchestra.run.trial044.stderr:+ sleep 5 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: Reconfiguring prometheus.trial044 deps ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] -> ['8765', '9283', 'alertmanager', 'ceph-exporter.trial044', 'ceph-exporter.trial080', 'ingress', 'mgr.trial044.gyygsk', 'node-exporter', 'secure_monitoring_stack:False'] (diff {'ingress'}) 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: Reconfiguring daemon prometheus.trial044 on trial044 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:00.363 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:00 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: pgmap v73: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 37 KiB/s rd, 895 B/s wr, 66 op/s 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.353 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:01 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='client.14742 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: pgmap v73: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 37 KiB/s rd, 895 B/s wr, 66 op/s 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='client.14746 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:01.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:01 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: Checking dashboard <-> RGW credentials 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-18T05:05:02.867 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:02 trial080 ceph-mon[24170]: pgmap v74: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 31 KiB/s rd, 740 B/s wr, 54 op/s 2026-02-18T05:05:02.928 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.928 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.928 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: Checking dashboard <-> RGW credentials 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2026-02-18T05:05:02.929 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:02 trial044 ceph-mon[17637]: pgmap v74: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 31 KiB/s rd, 740 B/s wr, 54 op/s 2026-02-18T05:05:05.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:04 trial044 ceph-mon[17637]: pgmap v75: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 575 B/s wr, 48 op/s 2026-02-18T05:05:05.179 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:04 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:05.338 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 192.168.17.44:/foouser /mnt/foo' 2026-02-18T05:05:05.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:04 trial080 ceph-mon[24170]: pgmap v75: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 575 B/s wr, 48 op/s 2026-02-18T05:05:05.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:04 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:05.403 INFO:teuthology.orchestra.run.trial044.stderr:+ mount -t nfs 192.168.17.44:/foouser /mnt/foo 2026-02-18T05:05:05.604 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2026-02-18T05:05:05.668 INFO:teuthology.orchestra.run.trial044.stderr:+ test -d /mnt/foo/foobucket 2026-02-18T05:05:05.672 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2026-02-18T05:05:05.734 INFO:teuthology.orchestra.run.trial044.stderr:+ find /mnt/foo -ls 2026-02-18T05:05:05.738 INFO:teuthology.orchestra.run.trial044.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Feb 18 05:04 /mnt/foo 2026-02-18T05:05:05.738 INFO:teuthology.orchestra.run.trial044.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Feb 18 05:04 /mnt/foo/foobucket 2026-02-18T05:05:05.738 INFO:teuthology.orchestra.run.trial044.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Feb 18 05:04 /mnt/foo/foobucket/myobject 2026-02-18T05:05:05.739 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2026-02-18T05:05:05.801 INFO:teuthology.orchestra.run.trial044.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2026-02-18T05:05:05.803 INFO:teuthology.orchestra.run.trial044.stdout:thebody 2026-02-18T05:05:05.804 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2026-02-18T05:05:05.866 INFO:teuthology.orchestra.run.trial044.stderr:+ echo test 2026-02-18T05:05:05.876 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2026-02-18T05:05:05.939 INFO:teuthology.orchestra.run.trial044.stderr:+ sync 2026-02-18T05:05:06.100 INFO:teuthology.run_tasks:Running task python... 2026-02-18T05:05:06.118 INFO:tasks.python:Running python on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:05:06.119 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' 2026-02-18T05:05:06.119 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest python3 2026-02-18T05:05:06.327 INFO:teuthology.orchestra.run.trial044.stdout:b'test\n' 2026-02-18T05:05:06.350 INFO:teuthology.run_tasks:Running task vip.exec... 2026-02-18T05:05:06.368 INFO:tasks.vip:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:05:06.368 DEBUG:teuthology.orchestra.run.trial044:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2026-02-18T05:05:06.393 INFO:teuthology.orchestra.run.trial044.stderr:+ umount /mnt/foo 2026-02-18T05:05:06.410 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:05:06.427 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:05:06.428 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph nfs export rm foo /foouser' 2026-02-18T05:05:06.568 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:06.991 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph nfs cluster rm foo' 2026-02-18T05:05:07.112 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:07.135 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:06 trial044 ceph-mon[17637]: pgmap v76: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 25 KiB/s rd, 511 B/s wr, 44 op/s 2026-02-18T05:05:07.135 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:06 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:05:07.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:06 trial080 ceph-mon[24170]: pgmap v76: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 25 KiB/s rd, 511 B/s wr, 44 op/s 2026-02-18T05:05:07.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:06 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2026-02-18T05:05:07.549 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-18T05:05:07.563 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:05:07.563 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2026-02-18T05:05:07.685 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:07.770 INFO:teuthology.orchestra.run.trial044.stdout:167 167 2026-02-18T05:05:07.903 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch status' 2026-02-18T05:05:08.010 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:07 trial044 ceph-mon[17637]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:08.010 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:08.010 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:05:08.010 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:07 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:08.022 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:08.242 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:07 trial080 ceph-mon[24170]: from='client.14772 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:08.242 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:08.242 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-18T05:05:08.242 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:07 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:08.292 INFO:teuthology.orchestra.run.trial044.stdout:Backend: cephadm 2026-02-18T05:05:08.292 INFO:teuthology.orchestra.run.trial044.stdout:Available: Yes 2026-02-18T05:05:08.292 INFO:teuthology.orchestra.run.trial044.stdout:Paused: No 2026-02-18T05:05:08.436 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch ps' 2026-02-18T05:05:08.595 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:alertmanager.trial044 trial044 *:9093,9094 running (75s) 0s ago 105s 26.9M - 0.28.1 91c01b3cec9b 10addd89752c 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter.trial044 trial044 *:9926 running (109s) 0s ago 109s 76.7M - 20.2.0-670-gadc19233 c2bc6184fe25 f16e703f58aa 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter.trial080 trial080 *:9926 running (88s) 0s ago 88s 77.1M - 20.2.0-670-gadc19233 c2bc6184fe25 cc7995fee2fb 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:crash.trial044 trial044 running (108s) 0s ago 108s 7666k - 20.2.0-670-gadc19233 c2bc6184fe25 348f8782677a 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:crash.trial080 trial080 running (87s) 0s ago 87s 7666k - 20.2.0-670-gadc19233 c2bc6184fe25 c3250dc38417 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:grafana.trial044 trial044 *:3000 running (74s) 0s ago 100s 129M - 12.3.1 5cdab57891ea f2610120a3cf 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:haproxy.nfs.foo.trial044.skxbkl trial044 *:2049,9049 running (18s) 0s ago 18s 7898k - 2.3.17-d1c9119 e85424b0d443 157f9877a1de 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:haproxy.nfs.foo.trial080.uiqmzl trial080 *:2049,9049 running (16s) 0s ago 16s 7843k - 2.3.17-d1c9119 e85424b0d443 2c41ab56ce51 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:keepalived.nfs.foo.trial044.osyylp trial044 running (13s) 0s ago 13s 2415k - 2.2.4 4a3a1ff181d9 5867386e390e 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:keepalived.nfs.foo.trial080.csrkse trial080 running (11s) 0s ago 11s 2407k - 2.2.4 4a3a1ff181d9 71babcde6cd9 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:mgr.trial044.gyygsk trial044 *:9283,8765,8443 running (2m) 0s ago 2m 641M - 20.2.0-670-gadc19233 c2bc6184fe25 237ac82200bf 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:mgr.trial080.ldrwtp trial080 *:8443,9283,8765 running (85s) 0s ago 85s 560M - 20.2.0-670-gadc19233 c2bc6184fe25 9fdbdb1850dd 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:mon.trial044 trial044 running (2m) 0s ago 2m 129M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 7c3a509e33a1 2026-02-18T05:05:08.860 INFO:teuthology.orchestra.run.trial044.stdout:mon.trial080 trial080 running (84s) 0s ago 84s 122M 2048M 20.2.0-670-gadc19233 c2bc6184fe25 1f84a73cfe29 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:nfs.foo.0.0.trial044.vdwgmd trial044 *:12049 running (20s) 0s ago 20s 192M - 5.9 c2bc6184fe25 70f7e386a30c 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter.trial044 trial044 *:9100 running (107s) 0s ago 107s 12.7M - 1.9.1 255ec253085f 2c5de88d90e4 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter.trial080 trial080 *:9100 running (86s) 0s ago 86s 12.7M - 1.9.1 255ec253085f d2f10499309f 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.0 trial080 running (60s) 0s ago 60s 122M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 2fdc63842c4f 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.1 trial044 running (59s) 0s ago 59s 126M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 4bc559104347 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.2 trial080 running (57s) 0s ago 57s 121M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 77814acef6ae 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.3 trial044 running (56s) 0s ago 56s 126M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 7b4e1c6b57d9 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.4 trial080 running (55s) 0s ago 55s 130M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 994cd62bde69 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.5 trial044 running (53s) 0s ago 53s 128M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 d78350003b6f 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.6 trial080 running (52s) 0s ago 52s 128M 19.9G 20.2.0-670-gadc19233 c2bc6184fe25 f1cf12fd5efa 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:osd.7 trial044 running (50s) 0s ago 50s 120M 19.2G 20.2.0-670-gadc19233 c2bc6184fe25 2b4092d2acec 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:prometheus.trial044 trial044 *:9095 running (8s) 0s ago 96s 47.2M - 3.6.0 4fcecf061b74 778baa56e5c1 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:rgw.foorgw.trial044.bzxxcf trial044 *:8800 running (30s) 0s ago 29s 172M - 20.2.0-670-gadc19233 c2bc6184fe25 86224d315013 2026-02-18T05:05:08.861 INFO:teuthology.orchestra.run.trial044.stdout:rgw.foorgw.trial080.hteady trial080 *:8800 running (30s) 0s ago 30s 174M - 20.2.0-670-gadc19233 c2bc6184fe25 f53417e8aa86 2026-02-18T05:05:09.004 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch ls' 2026-02-18T05:05:09.121 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:09.144 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:09.144 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: Remove service ingress.nfs.foo 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: Remove service nfs.foo 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: pgmap v77: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 426 B/s wr, 44 op/s 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.145 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:08 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: Remove service ingress.nfs.foo 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: Remove service nfs.foo 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: pgmap v77: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 26 KiB/s rd, 426 B/s wr, 44 op/s 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' 2026-02-18T05:05:09.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:08 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:alertmanager ?:9093,9094 1/1 0s ago 2m count:1 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:ceph-exporter ?:9926 2/2 1s ago 2m * 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:crash 2/2 1s ago 2m * 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:grafana ?:3000 1/1 0s ago 2m count:1 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:ingress.nfs.foo 192.168.17.44:2049,9049 4/4 31s count:2 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:mgr 2/2 1s ago 2m count:2 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:mon 2/2 1s ago 107s trial044:10.20.193.44=trial044;trial080:10.20.193.80=trial080;count:2 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:nfs.foo ?:12049 1/1 31s count:1 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:node-exporter ?:9100 2/2 1s ago 2m * 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:osd.all-available-devices 8 1s ago 76s * 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:prometheus ?:9095 1/1 0s ago 2m count:1 2026-02-18T05:05:09.387 INFO:teuthology.orchestra.run.trial044.stdout:rgw.foorgw ?:8800 2/2 1s ago 30s count:2 2026-02-18T05:05:09.545 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch host ls' 2026-02-18T05:05:09.661 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:09.913 INFO:teuthology.orchestra.run.trial044.stdout:HOST ADDR LABELS STATUS 2026-02-18T05:05:09.913 INFO:teuthology.orchestra.run.trial044.stdout:trial044 10.20.193.44 2026-02-18T05:05:09.913 INFO:teuthology.orchestra.run.trial044.stdout:trial080 10.20.193.80 2026-02-18T05:05:09.913 INFO:teuthology.orchestra.run.trial044.stdout:2 hosts in cluster 2026-02-18T05:05:10.033 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:10.034 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:10.034 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: Removing orphan daemon nfs.foo.0.0.trial044.vdwgmd... 2026-02-18T05:05:10.034 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: Removing daemon nfs.foo.0.0.trial044.vdwgmd from trial044 -- ports [12049] 2026-02-18T05:05:10.034 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:10.034 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:09 trial044 ceph-mon[17637]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:10.054 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch device ls' 2026-02-18T05:05:10.170 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: Removing orphan daemon nfs.foo.0.0.trial044.vdwgmd... 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: Removing daemon nfs.foo.0.0.trial044.vdwgmd from trial044 -- ports [12049] 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial044.bzxxcf", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:10.367 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:09 trial080 ceph-mon[24170]: from='mgr.14217 10.20.193.44:0/686960301' entity='mgr.trial044.gyygsk' cmd={"prefix": "config get", "who": "client.rgw.foorgw.trial080.hteady", "name": "rgw_frontends"} : dispatch 2026-02-18T05:05:10.428 INFO:teuthology.orchestra.run.trial044.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB50DB 1788G No 33s ago Has a FileSystem, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_112510AB511B 1788G No 33s ago Has a FileSystem, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme3n1 ssd Linux_38a805d7d79336575929 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme4n1 ssd Linux_c6e1f3e869c8bd4fc729 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme5n1 ssd Linux_d45230b47c52a535fa6a 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial044 /dev/nvme6n1 ssd Linux_27be8e429351636005d3 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme1n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B000E7 1788G No 33s ago Has a FileSystem, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme2n1 ssd MTFDKCC1T9TGP-1BK1JABYY_012510B00500 1788G No 33s ago Has a FileSystem, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme3n1 ssd Linux_9e8fc13609650657c001 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme4n1 ssd Linux_bf586bdda0b3173f492d 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.429 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme5n1 ssd Linux_9e08deab6148a6b9f8f3 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.430 INFO:teuthology.orchestra.run.trial044.stdout:trial080 /dev/nvme6n1 ssd Linux_1be5f0c96904f83cb2ac 700G No 33s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2026-02-18T05:05:10.567 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2026-02-18T05:05:10.689 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:10.947 INFO:teuthology.orchestra.run.trial044.stdout:osd.all-available-devices 8 2s ago 78s * 2026-02-18T05:05:11.058 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:10 trial044 ceph-mon[17637]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:11.059 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:10 trial044 ceph-mon[17637]: pgmap v78: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 682 B/s wr, 43 op/s 2026-02-18T05:05:11.059 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:10 trial044 ceph-mon[17637]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:11.080 DEBUG:teuthology.run_tasks:Unwinding manager vip 2026-02-18T05:05:11.094 INFO:tasks.vip:Removing 192.168.1.44 (and any VIPs) on trial044.front.sepia.ceph.com iface enp1s0f0... 2026-02-18T05:05:11.094 DEBUG:teuthology.orchestra.run.trial044:> sudo ip addr del 192.168.1.44/16 dev enp1s0f0 2026-02-18T05:05:11.119 DEBUG:teuthology.orchestra.run.trial044:> sudo ip addr del 192.168.17.44/16 dev enp1s0f0 2026-02-18T05:05:11.183 INFO:tasks.vip:Removing 192.168.1.80 (and any VIPs) on trial080.front.sepia.ceph.com iface enp1s0f0... 2026-02-18T05:05:11.184 DEBUG:teuthology.orchestra.run.trial080:> sudo ip addr del 192.168.1.80/16 dev enp1s0f0 2026-02-18T05:05:11.208 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:10 trial080 ceph-mon[24170]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:11.209 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:10 trial080 ceph-mon[24170]: pgmap v78: 225 pgs: 225 active+clean; 588 KiB data, 217 MiB used, 5.5 TiB / 5.5 TiB avail; 27 KiB/s rd, 682 B/s wr, 43 op/s 2026-02-18T05:05:11.209 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:10 trial080 ceph-mon[24170]: from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2026-02-18T05:05:11.213 DEBUG:teuthology.orchestra.run.trial080:> sudo ip addr del 192.168.17.44/16 dev enp1s0f0 2026-02-18T05:05:11.277 INFO:teuthology.orchestra.run.trial080.stderr:Error: ipv4: Address not found. 2026-02-18T05:05:11.278 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-18T05:05:11.279 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-18T05:05:11.296 INFO:tasks.cephadm:Teardown begin 2026-02-18T05:05:11.297 DEBUG:teuthology.orchestra.run.trial044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:05:11.321 DEBUG:teuthology.orchestra.run.trial080:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:05:11.344 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-18T05:05:11.344 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-18T05:05:11.474 INFO:teuthology.orchestra.run.trial044.stderr:Inferring config /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/mon.trial044/config 2026-02-18T05:05:11.492 INFO:teuthology.orchestra.run.trial044.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-18T05:05:11.508 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-18T05:05:11.509 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-18T05:05:11.509 DEBUG:teuthology.orchestra.run.trial044:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-18T05:05:11.526 DEBUG:teuthology.orchestra.run.trial080:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-18T05:05:11.542 INFO:tasks.cephadm:Stopping all daemons... 2026-02-18T05:05:11.543 INFO:tasks.cephadm.mon.trial044:Stopping mon.trial044... 2026-02-18T05:05:11.543 DEBUG:teuthology.orchestra.run.trial044:> sudo systemctl stop ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 systemd[1]: Stopping Ceph mon.trial044 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460... 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044[17612]: 2026-02-18T05:05:11.673+0000 7fa0ed088640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial044 -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 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044[17612]: 2026-02-18T05:05:11.673+0000 7fa0ed088640 -1 mon.trial044@0(leader) e2 *** Got Signal Terminated *** 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 podman[77604]: 2026-02-18 05:05:11.724895795 +0000 UTC m=+0.065568273 container died 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, ceph=True, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.build-date=20260216, CEPH_REF=20.2.1_2.17.26-baseline_2, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, OSD_FLAVOR=debug, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 podman[77604]: 2026-02-18 05:05:11.835108346 +0000 UTC m=+0.175780834 container remove 7c3a509e33a1229142314e8cdf0f6222d38652a6e9f64013a26cccb0afce6eb7 (image=quay.ceph.io/ceph-ci/ceph:adc1923395f2bcd6ae89b5d331d278364d1848ed, name=ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_SHA1=adc1923395f2bcd6ae89b5d331d278364d1848ed, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=debug, CEPH_REF=20.2.1_2.17.26-baseline_2) 2026-02-18T05:05:11.856 INFO:journalctl@ceph.mon.trial044.trial044.stdout:Feb 18 05:05:11 trial044 bash[77604]: ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial044 2026-02-18T05:05:11.915 DEBUG:teuthology.orchestra.run.trial044:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial044.service' 2026-02-18T05:05:11.954 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T05:05:11.955 INFO:tasks.cephadm.mon.trial044:Stopped mon.trial044 2026-02-18T05:05:11.955 INFO:tasks.cephadm.mon.trial080:Stopping mon.trial080... 2026-02-18T05:05:11.955 DEBUG:teuthology.orchestra.run.trial080:> sudo systemctl stop ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial080 2026-02-18T05:05:12.311 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:11 trial080 systemd[1]: Stopping Ceph mon.trial080 for 0815dcbd-0c87-11f1-9bb9-d404e6e7d460... 2026-02-18T05:05:12.311 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:12 trial080 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial080[24145]: 2026-02-18T05:05:12.055+0000 7f8e3cddf640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.trial080 -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 2026-02-18T05:05:12.312 INFO:journalctl@ceph.mon.trial080.trial080.stdout:Feb 18 05:05:12 trial080 ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460-mon-trial080[24145]: 2026-02-18T05:05:12.055+0000 7f8e3cddf640 -1 mon.trial080@1(peon) e2 *** Got Signal Terminated *** 2026-02-18T05:05:12.501 DEBUG:teuthology.orchestra.run.trial080:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0815dcbd-0c87-11f1-9bb9-d404e6e7d460@mon.trial080.service' 2026-02-18T05:05:12.540 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-18T05:05:12.540 INFO:tasks.cephadm.mon.trial080:Stopped mon.trial080 2026-02-18T05:05:12.541 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 --force --keep-logs 2026-02-18T05:05:19.519 INFO:teuthology.orchestra.run.trial044.stdout:Deleting cluster with fsid: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:05:58.856 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 --force --keep-logs 2026-02-18T05:05:58.976 INFO:teuthology.orchestra.run.trial080.stdout:Deleting cluster with fsid: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:06:36.953 DEBUG:teuthology.orchestra.run.trial044:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:06:36.982 DEBUG:teuthology.orchestra.run.trial080:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-18T05:06:37.009 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-18T05:06:37.012 DEBUG:teuthology.misc:Transferring archived files from trial044:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial044/crash 2026-02-18T05:06:37.013 DEBUG:teuthology.orchestra.run.trial044:> sudo tar c -f - -C /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash -- . 2026-02-18T05:06:37.047 INFO:teuthology.orchestra.run.trial044.stderr:tar: /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-18T05:06:37.048 INFO:teuthology.orchestra.run.trial044.stderr:tar: Error is not recoverable: exiting now 2026-02-18T05:06:37.050 DEBUG:teuthology.misc:Transferring archived files from trial080:/var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial080/crash 2026-02-18T05:06:37.051 DEBUG:teuthology.orchestra.run.trial080:> sudo tar c -f - -C /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash -- . 2026-02-18T05:06:37.076 INFO:teuthology.orchestra.run.trial080.stderr:tar: /var/lib/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-18T05:06:37.076 INFO:teuthology.orchestra.run.trial080.stderr:tar: Error is not recoverable: exiting now 2026-02-18T05:06:37.077 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-18T05:06:37.078 DEBUG:teuthology.orchestra.run.trial044:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-18T05:06:37.115 INFO:tasks.cephadm:Compressing logs... 2026-02-18T05:06:37.115 DEBUG:teuthology.orchestra.run.trial044:> 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 -- 2026-02-18T05:06:37.158 DEBUG:teuthology.orchestra.run.trial080:> 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 -- 2026-02-18T05:06:37.180 INFO:teuthology.orchestra.run.trial044.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-18T05:06:37.180 INFO:teuthology.orchestra.run.trial044.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.3.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial044.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial044.bzxxcf.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.3.log: /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial044.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.5.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr: 90.1% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial044.log.gz 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial044.bzxxcf.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.7.log 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr: 74.2% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial044.bzxxcf.log.gz 2026-02-18T05:06:37.184 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial044.bzxxcf.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr: 83.6% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log.gz 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial044.bzxxcf.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr: 77.9% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ops-log-ceph-client.rgw.foorgw.trial044.bzxxcf.log.gz 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.1.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial044.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial044.gyygsk.log 2026-02-18T05:06:37.185 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial044.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log 2026-02-18T05:06:37.187 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial044.gyygsk.log: 91.0% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log.gz 2026-02-18T05:06:37.187 INFO:teuthology.orchestra.run.trial044.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log: 84.1% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log.gz 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:find: ‘/var/log/rbd-target-api’: No such file or directorygzip 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr: -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.2.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.0.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial080.ldrwtp.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial080.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial080.ldrwtp.log: 91.5% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial080.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.4.log 2026-02-18T05:06:37.190 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.4.log: 82.4% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.cephadm.log.gz 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial080.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial080.hteady.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial080.log: 91.4% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.ceph-exporter.trial080.log.gz 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial080.hteady.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.6.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr: 67.7% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-client.rgw.foorgw.trial080.hteady.log.gz 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr: 91.1% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.audit.log.gz 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.6.log: 91.0% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial080.ldrwtp.log.gz 2026-02-18T05:06:37.191 INFO:teuthology.orchestra.run.trial080.stderr:/var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log: 83.1% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph.log.gz 2026-02-18T05:06:37.193 INFO:teuthology.orchestra.run.trial044.stderr: 95.8% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log.gz 2026-02-18T05:06:37.195 INFO:teuthology.orchestra.run.trial080.stderr: 95.8% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-volume.log.gz 2026-02-18T05:06:37.197 INFO:teuthology.orchestra.run.trial044.stderr: 91.7% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-18T05:06:37.217 INFO:teuthology.orchestra.run.trial080.stderr: 92.6% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial080.log.gz 2026-02-18T05:06:37.250 INFO:teuthology.orchestra.run.trial044.stderr: 89.8% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mgr.trial044.gyygsk.log.gz 2026-02-18T05:06:37.290 INFO:teuthology.orchestra.run.trial044.stderr: 91.8% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-mon.trial044.log.gz 2026-02-18T05:06:37.304 INFO:teuthology.orchestra.run.trial044.stderr: 93.6% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.7.log.gz 2026-02-18T05:06:37.309 INFO:teuthology.orchestra.run.trial080.stderr: 93.6% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.0.log.gz 2026-02-18T05:06:37.336 INFO:teuthology.orchestra.run.trial080.stderr: 93.7% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.2.log.gz 2026-02-18T05:06:37.381 INFO:teuthology.orchestra.run.trial044.stderr: 93.7% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.3.log.gz 2026-02-18T05:06:37.384 INFO:teuthology.orchestra.run.trial080.stderr: 93.9% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.6.log.gz 2026-02-18T05:06:37.401 INFO:teuthology.orchestra.run.trial044.stderr: 93.7% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.5.log.gz 2026-02-18T05:06:37.443 INFO:teuthology.orchestra.run.trial044.stderr: 93.7% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.1.log.gz 2026-02-18T05:06:37.445 INFO:teuthology.orchestra.run.trial044.stderr: 2026-02-18T05:06:37.445 INFO:teuthology.orchestra.run.trial044.stderr:real 0m0.272s 2026-02-18T05:06:37.446 INFO:teuthology.orchestra.run.trial044.stderr:user 0m0.946s 2026-02-18T05:06:37.446 INFO:teuthology.orchestra.run.trial044.stderr:sys 0m0.079s 2026-02-18T05:06:37.478 INFO:teuthology.orchestra.run.trial080.stderr: 93.6% -- replaced with /var/log/ceph/0815dcbd-0c87-11f1-9bb9-d404e6e7d460/ceph-osd.4.log.gz 2026-02-18T05:06:37.480 INFO:teuthology.orchestra.run.trial080.stderr: 2026-02-18T05:06:37.480 INFO:teuthology.orchestra.run.trial080.stderr:real 0m0.304s 2026-02-18T05:06:37.481 INFO:teuthology.orchestra.run.trial080.stderr:user 0m0.782s 2026-02-18T05:06:37.481 INFO:teuthology.orchestra.run.trial080.stderr:sys 0m0.054s 2026-02-18T05:06:37.481 INFO:tasks.cephadm:Archiving logs... 2026-02-18T05:06:37.481 DEBUG:teuthology.misc:Transferring archived files from trial044:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial044/log 2026-02-18T05:06:37.483 DEBUG:teuthology.orchestra.run.trial044:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-18T05:06:37.684 DEBUG:teuthology.misc:Transferring archived files from trial080:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial080/log 2026-02-18T05:06:37.685 DEBUG:teuthology.orchestra.run.trial080:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-18T05:06:37.797 INFO:tasks.cephadm:Removing cluster... 2026-02-18T05:06:37.797 DEBUG:teuthology.orchestra.run.trial044:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 --force 2026-02-18T05:06:37.916 INFO:teuthology.orchestra.run.trial044.stdout:Deleting cluster with fsid: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:06:37.972 DEBUG:teuthology.orchestra.run.trial080:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 --force 2026-02-18T05:06:38.088 INFO:teuthology.orchestra.run.trial080.stdout:Deleting cluster with fsid: 0815dcbd-0c87-11f1-9bb9-d404e6e7d460 2026-02-18T05:06:38.146 INFO:tasks.cephadm:Removing cephadm ... 2026-02-18T05:06:38.146 DEBUG:teuthology.orchestra.run.trial044:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-18T05:06:38.165 DEBUG:teuthology.orchestra.run.trial080:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-18T05:06:38.182 INFO:tasks.cephadm:Teardown complete 2026-02-18T05:06:38.182 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2026-02-18T05:06:38.195 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial044:/dev/vg_nvme/lv_1... 2026-02-18T05:06:38.196 DEBUG:teuthology.orchestra.run.trial044:> sudo nvme disconnect -n lv_1 2026-02-18T05:06:38.451 INFO:teuthology.orchestra.run.trial044.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-18T05:06:38.453 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial044:/dev/vg_nvme/lv_2... 2026-02-18T05:06:38.453 DEBUG:teuthology.orchestra.run.trial044:> sudo nvme disconnect -n lv_2 2026-02-18T05:06:38.707 INFO:teuthology.orchestra.run.trial044.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-18T05:06:38.709 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial044:/dev/vg_nvme/lv_3... 2026-02-18T05:06:38.709 DEBUG:teuthology.orchestra.run.trial044:> sudo nvme disconnect -n lv_3 2026-02-18T05:06:38.968 INFO:teuthology.orchestra.run.trial044.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-18T05:06:38.970 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial044:/dev/vg_nvme/lv_4... 2026-02-18T05:06:38.970 DEBUG:teuthology.orchestra.run.trial044:> sudo nvme disconnect -n lv_4 2026-02-18T05:06:39.217 INFO:teuthology.orchestra.run.trial044.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-18T05:06:39.219 DEBUG:teuthology.orchestra.run.trial044:> set -ex 2026-02-18T05:06:39.219 DEBUG:teuthology.orchestra.run.trial044:> sudo dd of=/scratch_devs 2026-02-18T05:06:39.243 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial080:/dev/vg_nvme/lv_1... 2026-02-18T05:06:39.244 DEBUG:teuthology.orchestra.run.trial080:> sudo nvme disconnect -n lv_1 2026-02-18T05:06:39.498 INFO:teuthology.orchestra.run.trial080.stdout:NQN:lv_1 disconnected 1 controller(s) 2026-02-18T05:06:39.500 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial080:/dev/vg_nvme/lv_2... 2026-02-18T05:06:39.501 DEBUG:teuthology.orchestra.run.trial080:> sudo nvme disconnect -n lv_2 2026-02-18T05:06:39.751 INFO:teuthology.orchestra.run.trial080.stdout:NQN:lv_2 disconnected 1 controller(s) 2026-02-18T05:06:39.753 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial080:/dev/vg_nvme/lv_3... 2026-02-18T05:06:39.754 DEBUG:teuthology.orchestra.run.trial080:> sudo nvme disconnect -n lv_3 2026-02-18T05:06:40.001 INFO:teuthology.orchestra.run.trial080.stdout:NQN:lv_3 disconnected 1 controller(s) 2026-02-18T05:06:40.002 INFO:tasks.nvme_loop:Disconnecting nvme_loop trial080:/dev/vg_nvme/lv_4... 2026-02-18T05:06:40.003 DEBUG:teuthology.orchestra.run.trial080:> sudo nvme disconnect -n lv_4 2026-02-18T05:06:40.246 INFO:teuthology.orchestra.run.trial080.stdout:NQN:lv_4 disconnected 1 controller(s) 2026-02-18T05:06:40.248 DEBUG:teuthology.orchestra.run.trial080:> set -ex 2026-02-18T05:06:40.249 DEBUG:teuthology.orchestra.run.trial080:> sudo dd of=/scratch_devs 2026-02-18T05:06:40.272 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-18T05:06:40.290 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-18T05:06:40.291 DEBUG:teuthology.orchestra.run.trial044:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T05:06:40.294 DEBUG:teuthology.orchestra.run.trial080:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-18T05:06:40.308 INFO:teuthology.orchestra.run.trial044.stderr:bash: line 1: ntpq: command not found 2026-02-18T05:06:40.328 INFO:teuthology.orchestra.run.trial080.stderr:bash: line 1: ntpq: command not found 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:=============================================================================== 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:^+ 23.186.168.131 2 6 177 122 -483us[ -425us] +/- 56ms 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:^+ 198.71.50.75 3 6 177 57 -665us[ -665us] +/- 35ms 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:^+ 23-95-35-34-host.colocro> 2 6 177 57 -718us[ -718us] +/- 36ms 2026-02-18T05:06:40.345 INFO:teuthology.orchestra.run.trial044.stdout:^* 50.218.103.254 2 6 177 58 +1428us[+1495us] +/- 32ms 2026-02-18T05:06:40.347 INFO:teuthology.orchestra.run.trial080.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-18T05:06:40.348 INFO:teuthology.orchestra.run.trial080.stdout:=============================================================================== 2026-02-18T05:06:40.348 INFO:teuthology.orchestra.run.trial080.stdout:^+ 23.186.168.131 2 6 177 58 -607us[ -673us] +/- 56ms 2026-02-18T05:06:40.348 INFO:teuthology.orchestra.run.trial080.stdout:^* 198.71.50.75 3 6 177 58 -622us[ -688us] +/- 35ms 2026-02-18T05:06:40.348 INFO:teuthology.orchestra.run.trial080.stdout:^+ 23-95-35-34-host.colocro> 2 6 177 58 -770us[ -770us] +/- 36ms 2026-02-18T05:06:40.348 INFO:teuthology.orchestra.run.trial080.stdout:^+ 50.218.103.254 2 6 177 58 +1756us[+1756us] +/- 32ms 2026-02-18T05:06:40.348 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-18T05:06:40.367 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-18T05:06:40.367 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-18T05:06:40.385 DEBUG:teuthology.orchestra.run.trial044:> 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 2026-02-18T05:06:40.440 DEBUG:teuthology.orchestra.run.trial080:> 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 2026-02-18T05:06:40.485 DEBUG:teuthology.orchestra.run.trial044:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2026-02-18T05:06:40.511 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:06:40.511 DEBUG:teuthology.orchestra.run.trial080:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2026-02-18T05:06:40.536 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:06:40.537 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-18T05:06:40.559 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-18T05:06:40.577 INFO:teuthology.task.internal:Duration was 347.105793 seconds 2026-02-18T05:06:40.578 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-18T05:06:40.596 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-18T05:06:40.597 DEBUG:teuthology.orchestra.run.trial044:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-18T05:06:40.600 DEBUG:teuthology.orchestra.run.trial080:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-18T05:06:40.634 INFO:teuthology.orchestra.run.trial044.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T05:06:40.637 INFO:teuthology.orchestra.run.trial080.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-18T05:06:40.894 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-18T05:06:40.895 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial044.front.sepia.ceph.com 2026-02-18T05:06:40.895 DEBUG:teuthology.orchestra.run.trial044:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-18T05:06:40.916 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial080.front.sepia.ceph.com 2026-02-18T05:06:40.916 DEBUG:teuthology.orchestra.run.trial080:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-18T05:06:40.955 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-18T05:06:40.955 DEBUG:teuthology.orchestra.run.trial044:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T05:06:40.957 DEBUG:teuthology.orchestra.run.trial080:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T05:06:41.077 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-18T05:06:41.077 DEBUG:teuthology.orchestra.run.trial044:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-18T05:06:41.079 DEBUG:teuthology.orchestra.run.trial080:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-18T05:06:41.100 INFO:teuthology.orchestra.run.trial044.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:06:41.101 INFO:teuthology.orchestra.run.trial044.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:06:41.101 INFO:teuthology.orchestra.run.trial044.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T05:06:41.101 INFO:teuthology.orchestra.run.trial044.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-18T05:06:41.101 INFO:teuthology.orchestra.run.trial044.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-18T05:06:41.103 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-18T05:06:41.104 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-18T05:06:41.104 INFO:teuthology.orchestra.run.trial080.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-18T05:06:41.104 INFO:teuthology.orchestra.run.trial080.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-18T05:06:41.104 INFO:teuthology.orchestra.run.trial080.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-18T05:06:41.113 INFO:teuthology.orchestra.run.trial080.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 90.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-18T05:06:41.120 INFO:teuthology.orchestra.run.trial044.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.8% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-18T05:06:41.122 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-18T05:06:41.141 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-18T05:06:41.141 DEBUG:teuthology.orchestra.run.trial044:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-18T05:06:41.186 DEBUG:teuthology.orchestra.run.trial080:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-18T05:06:41.212 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-18T05:06:41.232 DEBUG:teuthology.orchestra.run.trial044:> 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 2026-02-18T05:06:41.235 DEBUG:teuthology.orchestra.run.trial080:> 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 2026-02-18T05:06:41.258 INFO:teuthology.orchestra.run.trial044.stdout:kernel.core_pattern = core 2026-02-18T05:06:41.278 INFO:teuthology.orchestra.run.trial080.stdout:kernel.core_pattern = core 2026-02-18T05:06:41.292 DEBUG:teuthology.orchestra.run.trial044:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-18T05:06:41.326 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:06:41.327 DEBUG:teuthology.orchestra.run.trial080:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-18T05:06:41.347 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-18T05:06:41.348 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-18T05:06:41.367 INFO:teuthology.task.internal:Transferring archived files... 2026-02-18T05:06:41.368 DEBUG:teuthology.misc:Transferring archived files from trial044:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial044 2026-02-18T05:06:41.369 DEBUG:teuthology.orchestra.run.trial044:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-18T05:06:41.407 DEBUG:teuthology.misc:Transferring archived files from trial080:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-17_21:23:05-orch-20.2.1_2.17.26-baseline_2-distro-default-trial/54694/remote/trial080 2026-02-18T05:06:41.407 DEBUG:teuthology.orchestra.run.trial080:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-18T05:06:41.441 INFO:teuthology.task.internal:Removing archive directory... 2026-02-18T05:06:41.441 DEBUG:teuthology.orchestra.run.trial044:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-18T05:06:41.444 DEBUG:teuthology.orchestra.run.trial080:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-18T05:06:41.490 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-18T05:06:41.511 INFO:teuthology.task.internal:Not uploading archives. 2026-02-18T05:06:41.511 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-18T05:06:41.530 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-18T05:06:41.531 DEBUG:teuthology.orchestra.run.trial044:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-18T05:06:41.534 DEBUG:teuthology.orchestra.run.trial080:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-18T05:06:41.548 INFO:teuthology.orchestra.run.trial044.stdout: 791912 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 18 05:06 /home/ubuntu/cephtest 2026-02-18T05:06:41.551 INFO:teuthology.orchestra.run.trial080.stdout: 791912 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 18 05:06 /home/ubuntu/cephtest 2026-02-18T05:06:41.553 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-18T05:06:41.574 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-18T05:06:41.618 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream_runc 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 347.10579323768616 owner: scheduled_yuriw@soko04.front.sepia.ceph.com success: true 2026-02-18T05:06:41.618 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-18T05:06:41.744 INFO:teuthology.run:pass