2024-09-17T10:54:31.679 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-17T10:54:31.696 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T10:54:31.785 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720 branch: main description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7907720' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 7498493279982dfe87f00616198a5967475f6169 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 7498493279982dfe87f00616198a5967475f6169 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: main sha1: 2b698643d05f73e79c2d2888228947a84a4ac0bd owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 3649 sha1: 7498493279982dfe87f00616198a5967475f6169 sleep_before_teardown: 0 subset: 42/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 2b698643d05f73e79c2d2888228947a84a4ac0bd targets: smithi007.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOgpwORu8j0kb/HRBKiXglgQ6YVth8wWOAL1Hp1B29oieq2U5I/3nAanDnaq5E+I69nYqOHV0xJIvqooEGEtSHw= smithi145.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJwUhN1WzgSfMx9xbWFXufofCjQh6N3iRz6hD3H0ElL8cJN4eMa2+rNCedYbXBn/6/9qwms3wquUWkCv9stNN9k= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-16_20:08:15 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-17T10:54:31.785 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa; will attempt to use it 2024-09-17T10:54:31.786 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_2b698643d05f73e79c2d2888228947a84a4ac0bd/qa/tasks 2024-09-17T10:54:31.786 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-17T10:54:31.788 INFO:teuthology.task.internal:Checking packages... 2024-09-17T10:54:31.810 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '7498493279982dfe87f00616198a5967475f6169' 2024-09-17T10:54:31.811 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-17T10:54:31.811 INFO:teuthology.packaging:ref: None 2024-09-17T10:54:31.811 INFO:teuthology.packaging:tag: None 2024-09-17T10:54:31.811 INFO:teuthology.packaging:branch: main 2024-09-17T10:54:31.811 INFO:teuthology.packaging:sha1: 7498493279982dfe87f00616198a5967475f6169 2024-09-17T10:54:31.812 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-09-17T10:54:32.076 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4959.g2b698643 2024-09-17T10:54:32.078 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-17T10:54:32.084 INFO:teuthology.task.internal:no buildpackages task found 2024-09-17T10:54:32.084 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-17T10:54:32.117 INFO:teuthology.task.internal:Saving configuration 2024-09-17T10:54:32.130 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-17T10:54:32.137 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-17T10:54:32.164 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi007.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 10:49:32.005245', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOgpwORu8j0kb/HRBKiXglgQ6YVth8wWOAL1Hp1B29oieq2U5I/3nAanDnaq5E+I69nYqOHV0xJIvqooEGEtSHw='} 2024-09-17T10:54:32.185 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi145.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-17 10:49:32.003190', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJwUhN1WzgSfMx9xbWFXufofCjQh6N3iRz6hD3H0ElL8cJN4eMa2+rNCedYbXBn/6/9qwms3wquUWkCv9stNN9k='} 2024-09-17T10:54:32.186 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-17T10:54:32.191 INFO:teuthology.task.internal:roles: ubuntu@smithi007.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-17T10:54:32.191 INFO:teuthology.task.internal:roles: ubuntu@smithi145.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-17T10:54:32.192 INFO:teuthology.run_tasks:Running task console_log... 2024-09-17T10:54:32.247 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ffafb313ac0>, signals=[15]) 2024-09-17T10:54:32.247 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-17T10:54:32.253 INFO:teuthology.task.internal:Opening connections... 2024-09-17T10:54:32.253 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T10:54:32.254 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:54:32.333 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T10:54:32.334 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:54:32.410 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-17T10:54:32.416 DEBUG:teuthology.orchestra.run.smithi007:> uname -m 2024-09-17T10:54:32.433 INFO:teuthology.orchestra.run.smithi007.stdout:x86_64 2024-09-17T10:54:32.433 DEBUG:teuthology.orchestra.run.smithi007:> cat /etc/os-release 2024-09-17T10:54:32.490 INFO:teuthology.orchestra.run.smithi007.stdout:NAME="CentOS Stream" 2024-09-17T10:54:32.490 INFO:teuthology.orchestra.run.smithi007.stdout:VERSION="9" 2024-09-17T10:54:32.490 INFO:teuthology.orchestra.run.smithi007.stdout:ID="centos" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:ID_LIKE="rhel fedora" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:VERSION_ID="9" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:PLATFORM_ID="platform:el9" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:ANSI_COLOR="0;31" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:LOGO="fedora-logo-icon" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:HOME_URL="https://centos.org/" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T10:54:32.491 INFO:teuthology.orchestra.run.smithi007.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T10:54:32.492 INFO:teuthology.lock.ops:Updating smithi007.front.sepia.ceph.com on lock server 2024-09-17T10:54:32.525 DEBUG:teuthology.orchestra.run.smithi145:> uname -m 2024-09-17T10:54:32.544 INFO:teuthology.orchestra.run.smithi145.stdout:x86_64 2024-09-17T10:54:32.544 DEBUG:teuthology.orchestra.run.smithi145:> cat /etc/os-release 2024-09-17T10:54:32.601 INFO:teuthology.orchestra.run.smithi145.stdout:NAME="CentOS Stream" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION="9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:ID="centos" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:ID_LIKE="rhel fedora" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:VERSION_ID="9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:PLATFORM_ID="platform:el9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:ANSI_COLOR="0;31" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:LOGO="fedora-logo-icon" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:HOME_URL="https://centos.org/" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-17T10:54:32.602 INFO:teuthology.orchestra.run.smithi145.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-17T10:54:32.603 INFO:teuthology.lock.ops:Updating smithi145.front.sepia.ceph.com on lock server 2024-09-17T10:54:32.625 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-17T10:54:32.633 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-17T10:54:32.639 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-17T10:54:32.639 DEBUG:teuthology.orchestra.run.smithi007:> test '!' -e /home/ubuntu/cephtest 2024-09-17T10:54:32.642 DEBUG:teuthology.orchestra.run.smithi145:> test '!' -e /home/ubuntu/cephtest 2024-09-17T10:54:32.658 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-17T10:54:32.663 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-17T10:54:32.664 DEBUG:teuthology.orchestra.run.smithi007:> test -z $(ls -A /var/lib/ceph) 2024-09-17T10:54:32.703 DEBUG:teuthology.orchestra.run.smithi145:> test -z $(ls -A /var/lib/ceph) 2024-09-17T10:54:32.730 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-17T10:54:32.787 INFO:teuthology.run_tasks:Running task kernel... 2024-09-17T10:54:32.802 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-17T10:54:32.802 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-17T10:54:32.802 DEBUG:teuthology.orchestra.run.smithi007:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T10:54:32.803 DEBUG:teuthology.orchestra.run.smithi145:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-17T10:54:32.818 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:54:32.819 DEBUG:teuthology.orchestra.run.smithi007:> uname -r 2024-09-17T10:54:32.819 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:54:32.820 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-17T10:54:32.876 INFO:teuthology.orchestra.run.smithi007.stdout:5.14.0-503.el9.x86_64 2024-09-17T10:54:32.876 INFO:teuthology.task.kernel:Running kernel on smithi007: 5.14.0-503.el9.x86_64 2024-09-17T10:54:32.876 DEBUG:teuthology.orchestra.run.smithi007:> sudo yum install -y kernel 2024-09-17T10:54:32.879 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-503.el9.x86_64 2024-09-17T10:54:32.879 INFO:teuthology.task.kernel:Running kernel on smithi145: 5.14.0-503.el9.x86_64 2024-09-17T10:54:32.879 DEBUG:teuthology.orchestra.run.smithi145:> sudo yum install -y kernel 2024-09-17T10:54:36.560 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - BaseOS 4.4 MB/s | 8.3 MB 00:01 2024-09-17T10:54:37.199 INFO:teuthology.orchestra.run.smithi007.stdout:CentOS Stream 9 - BaseOS 3.3 MB/s | 8.3 MB 00:02 2024-09-17T10:54:38.353 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - AppStream 29 MB/s | 20 MB 00:00 2024-09-17T10:54:42.912 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - CRB 8.8 MB/s | 6.5 MB 00:00 2024-09-17T10:54:44.371 INFO:teuthology.orchestra.run.smithi145.stdout:CentOS Stream 9 - Extras packages 77 kB/s | 19 kB 00:00 2024-09-17T10:54:45.125 INFO:teuthology.orchestra.run.smithi145.stdout:Extra Packages for Enterprise Linux 36 MB/s | 23 MB 00:00 2024-09-17T10:54:45.725 INFO:teuthology.orchestra.run.smithi007.stdout:CentOS Stream 9 - AppStream 2.8 MB/s | 20 MB 00:07 2024-09-17T10:54:50.167 INFO:teuthology.orchestra.run.smithi007.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.5 MB 00:00 2024-09-17T10:54:50.572 INFO:teuthology.orchestra.run.smithi145.stdout:lab-extras 42 kB/s | 1.7 kB 00:00 2024-09-17T10:54:52.475 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T10:54:52.475 INFO:teuthology.orchestra.run.smithi145.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T10:54:52.551 INFO:teuthology.orchestra.run.smithi007.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 19 kB 00:01 2024-09-17T10:54:52.562 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T10:54:52.569 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T10:54:52.569 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T10:54:52.569 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Install 4 Packages 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 79 M 2024-09-17T10:54:52.570 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 126 M 2024-09-17T10:54:52.571 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T10:54:53.415 INFO:teuthology.orchestra.run.smithi145.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 64 kB/s | 36 kB 00:00 2024-09-17T10:54:53.471 INFO:teuthology.orchestra.run.smithi007.stdout:Extra Packages for Enterprise Linux 29 MB/s | 23 MB 00:00 2024-09-17T10:54:54.240 INFO:teuthology.orchestra.run.smithi145.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-09-17T10:54:54.907 INFO:teuthology.orchestra.run.smithi145.stdout:(3/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 17 MB/s | 35 MB 00:02 2024-09-17T10:54:55.615 INFO:teuthology.orchestra.run.smithi145.stdout:(4/4): kernel-modules-core-5.14.0-508.el9.x86_6 13 MB/s | 29 MB 00:02 2024-09-17T10:54:55.616 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T10:54:55.616 INFO:teuthology.orchestra.run.smithi145.stdout:Total 26 MB/s | 79 MB 00:03 2024-09-17T10:54:56.301 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T10:54:56.657 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T10:54:56.657 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T10:54:57.607 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T10:54:57.608 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T10:54:59.162 INFO:teuthology.orchestra.run.smithi007.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-17T10:55:00.037 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T10:55:00.694 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:55:00.783 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:55:01.117 INFO:teuthology.orchestra.run.smithi007.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-17T10:55:01.117 INFO:teuthology.orchestra.run.smithi007.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-17T10:55:01.207 INFO:teuthology.orchestra.run.smithi007.stdout:Dependencies resolved. 2024-09-17T10:55:01.213 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T10:55:01.213 INFO:teuthology.orchestra.run.smithi007.stdout: Package Architecture Version Repository Size 2024-09-17T10:55:01.213 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T10:55:01.213 INFO:teuthology.orchestra.run.smithi007.stdout:Installing: 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: kernel x86_64 5.14.0-508.el9 baseos 36 k 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout:Installing dependencies: 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-core x86_64 5.14.0-508.el9 baseos 16 M 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-modules x86_64 5.14.0-508.el9 baseos 35 M 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-modules-core x86_64 5.14.0-508.el9 baseos 29 M 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction Summary 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout:Install 4 Packages 2024-09-17T10:55:01.214 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:55:01.215 INFO:teuthology.orchestra.run.smithi007.stdout:Total download size: 79 M 2024-09-17T10:55:01.215 INFO:teuthology.orchestra.run.smithi007.stdout:Installed size: 126 M 2024-09-17T10:55:01.215 INFO:teuthology.orchestra.run.smithi007.stdout:Downloading Packages: 2024-09-17T10:55:01.379 INFO:teuthology.orchestra.run.smithi007.stdout:(1/4): kernel-5.14.0-508.el9.x86_64.rpm 320 kB/s | 36 kB 00:00 2024-09-17T10:55:01.762 INFO:teuthology.orchestra.run.smithi007.stdout:(2/4): kernel-core-5.14.0-508.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-09-17T10:55:02.146 INFO:teuthology.orchestra.run.smithi007.stdout:(3/4): kernel-modules-core-5.14.0-508.el9.x86_6 37 MB/s | 29 MB 00:00 2024-09-17T10:55:02.463 INFO:teuthology.orchestra.run.smithi007.stdout:(4/4): kernel-modules-5.14.0-508.el9.x86_64.rpm 29 MB/s | 35 MB 00:01 2024-09-17T10:55:02.463 INFO:teuthology.orchestra.run.smithi007.stdout:-------------------------------------------------------------------------------- 2024-09-17T10:55:02.463 INFO:teuthology.orchestra.run.smithi007.stdout:Total 63 MB/s | 79 MB 00:01 2024-09-17T10:55:03.176 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction check 2024-09-17T10:55:03.531 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:55:03.577 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction check succeeded. 2024-09-17T10:55:03.577 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction test 2024-09-17T10:55:03.670 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:55:04.590 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction test succeeded. 2024-09-17T10:55:04.590 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction 2024-09-17T10:55:07.133 INFO:teuthology.orchestra.run.smithi007.stdout: Preparing : 1/1 2024-09-17T10:55:07.801 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : kernel-modules-core-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:55:07.890 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:55:08.488 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:55:08.604 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:10.682 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:55:10.816 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:55:13.433 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:15.967 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:55:16.008 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:21.151 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:51.472 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:51.512 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:51.890 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:51.890 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:55:51.891 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:55:51.891 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:55:52.714 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T10:55:53.048 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:55:53.131 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:55:53.132 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:55:53.132 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T10:55:53.132 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T10:55:53.132 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T10:55:53.132 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-17T10:55:53.132 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi145.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T10:55:53.132 DEBUG:teuthology.orchestra.run.smithi145:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:55:53.191 INFO:teuthology.orchestra.run.smithi145.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:55:53.191 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:55:53.191 DEBUG:teuthology.orchestra.run.smithi145:> sudo rpm -qi grub2-tools 2024-09-17T10:55:53.223 INFO:teuthology.orchestra.run.smithi145.stdout:Name : grub2-tools 2024-09-17T10:55:53.223 INFO:teuthology.orchestra.run.smithi145.stdout:Epoch : 1 2024-09-17T10:55:53.223 INFO:teuthology.orchestra.run.smithi145.stdout:Version : 2.06 2024-09-17T10:55:53.223 INFO:teuthology.orchestra.run.smithi145.stdout:Release : 82.el9 2024-09-17T10:55:53.223 INFO:teuthology.orchestra.run.smithi145.stdout:Architecture: x86_64 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Group : Unspecified 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Size : 8274670 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:License : GPLv3+ 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Packager : builder@centos.org 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Vendor : CentOS 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Summary : Support tools for GRUB. 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout:Description : 2024-09-17T10:55:53.224 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout:hardware devices. 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T10:55:53.225 INFO:teuthology.orchestra.run.smithi145.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T10:55:53.226 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T10:55:53.226 INFO:teuthology.task.kernel:Updating grub on smithi145 to boot 5.14.0-508.el9.x86_64 2024-09-17T10:55:53.226 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T10:55:53.860 INFO:teuthology.orchestra.run.smithi145.stderr:Generating grub configuration file ... 2024-09-17T10:55:55.155 INFO:teuthology.orchestra.run.smithi145.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T10:55:55.185 INFO:teuthology.orchestra.run.smithi145.stderr:done 2024-09-17T10:55:55.188 DEBUG:teuthology.orchestra.run.smithi145:> mktemp 2024-09-17T10:55:55.203 INFO:teuthology.orchestra.run.smithi145.stdout:/tmp/tmp.6Xdlllxoy4 2024-09-17T10:55:55.203 DEBUG:teuthology.orchestra.run.smithi145:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.6Xdlllxoy4 2024-09-17T10:55:55.270 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 0666 /tmp/tmp.6Xdlllxoy4 2024-09-17T10:55:55.423 DEBUG:teuthology.orchestra.remote:smithi145:/tmp/tmp.6Xdlllxoy4 is 6KB 2024-09-17T10:55:55.471 DEBUG:teuthology.orchestra.run.smithi145:> rm -fr /tmp/tmp.6Xdlllxoy4 2024-09-17T10:55:55.486 DEBUG:teuthology.orchestra.run.smithi145:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T10:55:55.548 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T10:55:55.549 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T10:55:55.549 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T10:55:55.549 INFO:teuthology.orchestra.run.smithi145.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T10:55:55.550 DEBUG:teuthology.orchestra.run.smithi145:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T10:55:55.712 DEBUG:teuthology.orchestra.run.smithi145:> sudo shutdown -r now 2024-09-17T10:56:00.572 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:56:00.612 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-modules-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:56:01.070 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: kernel-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:56:01.071 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : kernel-5.14.0-508.el9.x86_64 1/4 2024-09-17T10:56:01.071 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : kernel-core-5.14.0-508.el9.x86_64 2/4 2024-09-17T10:56:01.071 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : kernel-modules-5.14.0-508.el9.x86_64 3/4 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : kernel-modules-core-5.14.0-508.el9.x86_64 4/4 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout:Installed: 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-5.14.0-508.el9.x86_64 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-core-5.14.0-508.el9.x86_64 2024-09-17T10:56:01.927 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-modules-5.14.0-508.el9.x86_64 2024-09-17T10:56:01.928 INFO:teuthology.orchestra.run.smithi007.stdout: kernel-modules-core-5.14.0-508.el9.x86_64 2024-09-17T10:56:01.928 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:56:01.928 INFO:teuthology.orchestra.run.smithi007.stdout:Complete! 2024-09-17T10:56:02.286 DEBUG:teuthology.orchestra.run.smithi007:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:56:02.369 INFO:teuthology.orchestra.run.smithi007.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:56:02.369 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:56:02.369 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-508.el9.x86_64 2024-09-17T10:56:02.370 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-17T10:56:02.370 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-17T10:56:02.370 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-17T10:56:02.370 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi007.front.sepia.ceph.com, path=None, version=distro) 2024-09-17T10:56:02.370 DEBUG:teuthology.orchestra.run.smithi007:> rpm -q kernel | sort -rV | head -n 1 2024-09-17T10:56:02.428 INFO:teuthology.orchestra.run.smithi007.stdout:kernel-5.14.0-508.el9.x86_64 2024-09-17T10:56:02.429 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-508.el9.x86_64 2024-09-17T10:56:02.429 DEBUG:teuthology.orchestra.run.smithi007:> sudo rpm -qi grub2-tools 2024-09-17T10:56:02.460 INFO:teuthology.orchestra.run.smithi007.stdout:Name : grub2-tools 2024-09-17T10:56:02.460 INFO:teuthology.orchestra.run.smithi007.stdout:Epoch : 1 2024-09-17T10:56:02.460 INFO:teuthology.orchestra.run.smithi007.stdout:Version : 2.06 2024-09-17T10:56:02.460 INFO:teuthology.orchestra.run.smithi007.stdout:Release : 82.el9 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Architecture: x86_64 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Group : Unspecified 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Size : 8274670 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:License : GPLv3+ 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Packager : builder@centos.org 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Vendor : CentOS 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-17T10:56:02.461 INFO:teuthology.orchestra.run.smithi007.stdout:Summary : Support tools for GRUB. 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:Description : 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:hardware devices. 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T10:56:02.462 INFO:teuthology.orchestra.run.smithi007.stdout:This subpackage provides tools for support of all platforms. 2024-09-17T10:56:02.463 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-17T10:56:02.463 INFO:teuthology.task.kernel:Updating grub on smithi007 to boot 5.14.0-508.el9.x86_64 2024-09-17T10:56:02.463 DEBUG:teuthology.orchestra.run.smithi007:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-17T10:56:03.104 INFO:teuthology.orchestra.run.smithi007.stderr:Generating grub configuration file ... 2024-09-17T10:56:04.368 INFO:teuthology.orchestra.run.smithi007.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-17T10:56:04.399 INFO:teuthology.orchestra.run.smithi007.stderr:done 2024-09-17T10:56:04.407 DEBUG:teuthology.orchestra.run.smithi007:> mktemp 2024-09-17T10:56:04.422 INFO:teuthology.orchestra.run.smithi007.stdout:/tmp/tmp.VNgWJfVsl8 2024-09-17T10:56:04.422 DEBUG:teuthology.orchestra.run.smithi007:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.VNgWJfVsl8 2024-09-17T10:56:04.488 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 0666 /tmp/tmp.VNgWJfVsl8 2024-09-17T10:56:04.627 DEBUG:teuthology.orchestra.remote:smithi007:/tmp/tmp.VNgWJfVsl8 is 6KB 2024-09-17T10:56:04.647 DEBUG:teuthology.orchestra.run.smithi007:> rm -fr /tmp/tmp.VNgWJfVsl8 2024-09-17T10:56:04.662 DEBUG:teuthology.orchestra.run.smithi007:> sudo /bin/ls /boot/loader/entries || true 2024-09-17T10:56:04.725 INFO:teuthology.orchestra.run.smithi007.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-17T10:56:04.725 INFO:teuthology.orchestra.run.smithi007.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-17T10:56:04.725 INFO:teuthology.orchestra.run.smithi007.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-17T10:56:04.725 INFO:teuthology.orchestra.run.smithi007.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64.conf 2024-09-17T10:56:04.726 DEBUG:teuthology.orchestra.run.smithi007:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-508.el9.x86_64 2024-09-17T10:56:04.881 DEBUG:teuthology.orchestra.run.smithi007:> sudo shutdown -r now 2024-09-17T10:56:25.733 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-17T10:56:25.733 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T10:56:25.734 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:56:34.886 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-17T10:56:34.887 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T10:56:34.887 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:56:44.097 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T10:56:53.105 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T10:56:53.106 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:56:53.313 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.7 2024-09-17T10:56:56.157 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T10:57:02.318 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T10:57:02.319 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:57:05.377 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.7 2024-09-17T10:57:08.160 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T10:57:08.161 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:57:17.381 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T10:57:17.382 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:57:26.593 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.145 2024-09-17T10:57:41.609 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T10:57:41.610 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T10:57:42.179 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-17T10:57:42.558 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T10:57:42.559 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-508.el9.x86_64"... 2024-09-17T10:57:42.559 DEBUG:teuthology.orchestra.run.smithi145:> uname -r 2024-09-17T10:57:42.574 INFO:teuthology.orchestra.run.smithi145.stdout:5.14.0-508.el9.x86_64 2024-09-17T10:57:42.574 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T10:57:42.574 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T10:57:42.574 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T10:57:43.575 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-17T10:57:43.575 DEBUG:teuthology.orchestra.run.smithi145:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T10:57:43.727 INFO:teuthology.orchestra.run.smithi145.stdout:ttyS1 2024-09-17T10:57:43.747 DEBUG:teuthology.parallel:result is None 2024-09-17T10:57:49.302 DEBUG:teuthology.orchestra.run.smithi007:> true 2024-09-17T10:57:49.876 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T10:57:49.877 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-508.el9.x86_64"... 2024-09-17T10:57:49.877 DEBUG:teuthology.orchestra.run.smithi007:> uname -r 2024-09-17T10:57:49.926 INFO:teuthology.orchestra.run.smithi007.stdout:5.14.0-508.el9.x86_64 2024-09-17T10:57:49.926 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-508.el9.x86_64 vs 5.14.0-508.el9.x86_64 2024-09-17T10:57:49.926 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-17T10:57:49.926 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-17T10:57:50.927 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-17T10:57:50.927 DEBUG:teuthology.orchestra.run.smithi007:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-17T10:57:51.084 INFO:teuthology.orchestra.run.smithi007.stdout:ttyS1 2024-09-17T10:57:51.120 DEBUG:teuthology.parallel:result is None 2024-09-17T10:57:51.120 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-17T10:57:51.128 INFO:teuthology.task.internal:Creating test directory... 2024-09-17T10:57:51.128 DEBUG:teuthology.orchestra.run.smithi007:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T10:57:51.130 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-17T10:57:51.150 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-17T10:57:51.156 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-17T10:57:51.165 INFO:teuthology.task.internal:Creating archive directory... 2024-09-17T10:57:51.165 DEBUG:teuthology.orchestra.run.smithi007:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T10:57:51.190 DEBUG:teuthology.orchestra.run.smithi145:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-17T10:57:51.254 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-17T10:57:51.260 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-17T10:57:51.260 DEBUG:teuthology.orchestra.run.smithi007:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-17T10:57:51.263 DEBUG:teuthology.orchestra.run.smithi145:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-17T10:57:51.292 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:57:51.303 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:57:51.313 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:57:51.324 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-17T10:57:51.326 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-17T10:57:51.333 INFO:teuthology.task.internal:Configuring sudo... 2024-09-17T10:57:51.333 DEBUG:teuthology.orchestra.run.smithi007:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T10:57:51.350 DEBUG:teuthology.orchestra.run.smithi145:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-17T10:57:51.393 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-17T10:57:51.402 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-17T10:57:51.403 DEBUG:teuthology.orchestra.run.smithi007:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T10:57:51.419 DEBUG:teuthology.orchestra.run.smithi145:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-17T10:57:51.449 DEBUG:teuthology.orchestra.run.smithi007:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:57:51.517 DEBUG:teuthology.orchestra.run.smithi007:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:57:51.574 DEBUG:teuthology.orchestra.run.smithi007:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:57:51.658 DEBUG:teuthology.orchestra.run.smithi007:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:57:51.704 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T10:57:51.704 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T10:57:51.773 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:57:51.812 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-17T10:57:51.868 DEBUG:teuthology.orchestra.run.smithi145:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:57:51.947 DEBUG:teuthology.orchestra.run.smithi145:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-17T10:57:51.996 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T10:57:51.996 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-17T10:57:52.064 DEBUG:teuthology.orchestra.run.smithi007:> sudo service rsyslog restart 2024-09-17T10:57:52.067 DEBUG:teuthology.orchestra.run.smithi145:> sudo service rsyslog restart 2024-09-17T10:57:52.108 INFO:teuthology.orchestra.run.smithi007.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T10:57:52.162 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T10:57:52.564 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-17T10:57:52.572 INFO:teuthology.task.internal:Starting timer... 2024-09-17T10:57:52.572 INFO:teuthology.run_tasks:Running task pcp... 2024-09-17T10:57:52.582 INFO:teuthology.run_tasks:Running task selinux... 2024-09-17T10:57:52.590 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-09-17T10:57:52.590 DEBUG:teuthology.orchestra.run.smithi007:> sudo service auditd rotate 2024-09-17T10:57:52.639 INFO:teuthology.orchestra.run.smithi007.stdout:Rotating logs: 2024-09-17T10:57:52.641 DEBUG:teuthology.orchestra.run.smithi145:> sudo service auditd rotate 2024-09-17T10:57:52.686 INFO:teuthology.orchestra.run.smithi145.stdout:Rotating logs: 2024-09-17T10:57:52.688 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-17T10:57:52.688 DEBUG:teuthology.orchestra.run.smithi007:> /usr/sbin/getenforce 2024-09-17T10:57:52.732 INFO:teuthology.orchestra.run.smithi007.stdout:Permissive 2024-09-17T10:57:52.732 DEBUG:teuthology.orchestra.run.smithi145:> /usr/sbin/getenforce 2024-09-17T10:57:52.765 INFO:teuthology.orchestra.run.smithi145.stdout:Permissive 2024-09-17T10:57:52.765 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi007.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi145.front.sepia.ceph.com': 'permissive'} 2024-09-17T10:57:52.766 DEBUG:teuthology.orchestra.run.smithi007:> 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 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T10:57:52.804 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:57:52.805 DEBUG:teuthology.orchestra.run.smithi145:> 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 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T10:57:52.833 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T10:57:52.833 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-17T10:57:52.834 DEBUG:teuthology.orchestra.run.smithi007:> sudo /usr/sbin/setenforce permissive 2024-09-17T10:57:52.879 DEBUG:teuthology.orchestra.run.smithi145:> sudo /usr/sbin/setenforce permissive 2024-09-17T10:57:52.908 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-17T10:57:52.918 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-17T10:57:52.929 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-17T10:57:52.930 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi007.front.sepia.ceph.com,smithi145.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-17T11:01:39.290 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi007.front.sepia.ceph.com'), Remote(name='ubuntu@smithi145.front.sepia.ceph.com')] 2024-09-17T11:01:39.292 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T11:01:39.293 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi007.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T11:01:39.373 DEBUG:teuthology.orchestra.run.smithi007:> true 2024-09-17T11:01:39.457 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi007.front.sepia.ceph.com' 2024-09-17T11:01:39.457 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T11:01:39.458 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi145.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-17T11:01:39.575 DEBUG:teuthology.orchestra.run.smithi145:> true 2024-09-17T11:01:39.649 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi145.front.sepia.ceph.com' 2024-09-17T11:01:39.649 INFO:teuthology.run_tasks:Running task clock... 2024-09-17T11:01:39.660 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-17T11:01:39.660 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T11:01:39.661 DEBUG:teuthology.orchestra.run.smithi007:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:01:39.664 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-17T11:01:39.664 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:01:39.693 INFO:teuthology.orchestra.run.smithi007.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T11:01:39.709 INFO:teuthology.orchestra.run.smithi007.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T11:01:39.719 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-17T11:01:39.733 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-17T11:01:39.735 INFO:teuthology.orchestra.run.smithi007.stderr:sudo: ntpd: command not found 2024-09-17T11:01:39.747 INFO:teuthology.orchestra.run.smithi007.stdout:506 Cannot talk to daemon 2024-09-17T11:01:39.758 INFO:teuthology.orchestra.run.smithi145.stderr:sudo: ntpd: command not found 2024-09-17T11:01:39.762 INFO:teuthology.orchestra.run.smithi007.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T11:01:39.769 INFO:teuthology.orchestra.run.smithi145.stdout:506 Cannot talk to daemon 2024-09-17T11:01:39.777 INFO:teuthology.orchestra.run.smithi007.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T11:01:39.784 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-17T11:01:39.797 INFO:teuthology.orchestra.run.smithi145.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-17T11:01:39.834 INFO:teuthology.orchestra.run.smithi007.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:01:39.837 INFO:teuthology.orchestra.run.smithi007.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:01:39.838 INFO:teuthology.orchestra.run.smithi007.stdout:=============================================================================== 2024-09-17T11:01:39.838 INFO:teuthology.orchestra.run.smithi007.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.838 INFO:teuthology.orchestra.run.smithi007.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.838 INFO:teuthology.orchestra.run.smithi007.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.838 INFO:teuthology.orchestra.run.smithi007.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.853 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.857 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:01:39.858 INFO:teuthology.run_tasks:Running task pexec... 2024-09-17T11:01:39.868 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-17T11:01:39.868 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:01:39.869 DEBUG:teuthology.orchestra.run.smithi007:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T11:01:39.869 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T11:01:39.869 DEBUG:teuthology.orchestra.run.smithi145:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-17T11:01:40.248 INFO:teuthology.orchestra.run.smithi007.stdout:Dependencies resolved. 2024-09-17T11:01:40.248 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T11:01:40.254 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:40.254 INFO:teuthology.orchestra.run.smithi007.stdout: Package Architecture Version Repository Size 2024-09-17T11:01:40.254 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Removing: 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Removing unused dependencies: 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction Summary 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Remove 2 Packages 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Freed space: 5.5 M 2024-09-17T11:01:40.255 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction check 2024-09-17T11:01:40.259 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction check succeeded. 2024-09-17T11:01:40.259 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction test 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:Removing: 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:Removing unused dependencies: 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T11:01:40.260 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:40.261 INFO:teuthology.orchestra.run.smithi145.stdout:Remove 2 Packages 2024-09-17T11:01:40.261 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:40.261 INFO:teuthology.orchestra.run.smithi145.stdout:Freed space: 5.5 M 2024-09-17T11:01:40.261 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T11:01:40.265 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T11:01:40.265 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T11:01:40.322 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction test succeeded. 2024-09-17T11:01:40.323 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction 2024-09-17T11:01:40.328 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T11:01:40.329 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T11:01:40.465 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T11:01:40.477 INFO:teuthology.orchestra.run.smithi007.stdout: Preparing : 1/1 2024-09-17T11:01:40.546 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T11:01:40.549 INFO:teuthology.orchestra.run.smithi007.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-17T11:01:40.600 INFO:teuthology.orchestra.run.smithi145.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:01:40.608 INFO:teuthology.orchestra.run.smithi007.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:01:41.046 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:01:41.047 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T11:01:41.131 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-17T11:01:41.131 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout:Removed: 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:41.267 INFO:teuthology.orchestra.run.smithi007.stdout:Complete! 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout:Removed: 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:41.433 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T11:01:42.087 INFO:teuthology.orchestra.run.smithi007.stdout:Last metadata expiration check: 0:00:46 ago on Tue 17 Sep 2024 11:00:55 AM UTC. 2024-09-17T11:01:42.228 INFO:teuthology.orchestra.run.smithi007.stdout:Dependencies resolved. 2024-09-17T11:01:42.228 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: Package Architecture Version Repository Size 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout:Installing: 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout:Installing dependencies: 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction Summary 2024-09-17T11:01:42.229 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:01:42.230 INFO:teuthology.orchestra.run.smithi007.stdout:Install 6 Packages 2024-09-17T11:01:42.230 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:42.234 INFO:teuthology.orchestra.run.smithi007.stdout:Total download size: 2.0 M 2024-09-17T11:01:42.234 INFO:teuthology.orchestra.run.smithi007.stdout:Installed size: 9.2 M 2024-09-17T11:01:42.235 INFO:teuthology.orchestra.run.smithi007.stdout:Downloading Packages: 2024-09-17T11:01:42.267 INFO:teuthology.orchestra.run.smithi145.stdout:Last metadata expiration check: 0:00:50 ago on Tue 17 Sep 2024 11:00:52 AM UTC. 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout:Dependencies resolved. 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout: Package Architecture Version Repository Size 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout:Installing: 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-17T11:01:42.407 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout:Installing dependencies: 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction Summary 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout:================================================================================ 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout:Install 6 Packages 2024-09-17T11:01:42.408 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:42.413 INFO:teuthology.orchestra.run.smithi145.stdout:Total download size: 2.0 M 2024-09-17T11:01:42.413 INFO:teuthology.orchestra.run.smithi145.stdout:Installed size: 9.2 M 2024-09-17T11:01:42.413 INFO:teuthology.orchestra.run.smithi145.stdout:Downloading Packages: 2024-09-17T11:01:42.895 INFO:teuthology.orchestra.run.smithi007.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 118 kB/s | 44 kB 00:00 2024-09-17T11:01:42.979 INFO:teuthology.orchestra.run.smithi007.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 230 kB/s | 106 kB 00:00 2024-09-17T11:01:43.096 INFO:teuthology.orchestra.run.smithi007.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 358 kB/s | 72 kB 00:00 2024-09-17T11:01:43.179 INFO:teuthology.orchestra.run.smithi007.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 420 kB/s | 84 kB 00:00 2024-09-17T11:01:43.254 INFO:teuthology.orchestra.run.smithi007.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 1.2 MB/s | 906 kB 00:00 2024-09-17T11:01:43.256 INFO:teuthology.orchestra.run.smithi145.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2024-09-17T11:01:43.331 INFO:teuthology.orchestra.run.smithi145.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 161 kB/s | 106 kB 00:00 2024-09-17T11:01:43.572 INFO:teuthology.orchestra.run.smithi007.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 1.7 MB/s | 837 kB 00:00 2024-09-17T11:01:43.572 INFO:teuthology.orchestra.run.smithi007.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:01:43.572 INFO:teuthology.orchestra.run.smithi007.stdout:Total 1.5 MB/s | 2.0 MB 00:01 2024-09-17T11:01:43.655 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction check 2024-09-17T11:01:43.665 INFO:teuthology.orchestra.run.smithi145.stdout:(3/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 911 kB/s | 906 kB 00:00 2024-09-17T11:01:43.670 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction check succeeded. 2024-09-17T11:01:43.670 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction test 2024-09-17T11:01:43.890 INFO:teuthology.orchestra.run.smithi145.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 113 kB/s | 72 kB 00:00 2024-09-17T11:01:43.961 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction test succeeded. 2024-09-17T11:01:43.962 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction 2024-09-17T11:01:43.965 INFO:teuthology.orchestra.run.smithi145.stdout:(5/6): python3-kmod-0.9-32.el9.x86_64.rpm 133 kB/s | 84 kB 00:00 2024-09-17T11:01:44.395 INFO:teuthology.orchestra.run.smithi007.stdout: Preparing : 1/1 2024-09-17T11:01:44.492 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T11:01:44.528 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T11:01:44.563 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T11:01:44.632 INFO:teuthology.orchestra.run.smithi145.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 867 kB/s | 837 kB 00:00 2024-09-17T11:01:44.632 INFO:teuthology.orchestra.run.smithi145.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:01:44.633 INFO:teuthology.orchestra.run.smithi145.stdout:Total 924 kB/s | 2.0 MB 00:02 2024-09-17T11:01:44.714 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction check 2024-09-17T11:01:44.728 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction check succeeded. 2024-09-17T11:01:44.728 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction test 2024-09-17T11:01:44.783 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T11:01:44.818 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T11:01:45.007 INFO:teuthology.orchestra.run.smithi145.stdout:Transaction test succeeded. 2024-09-17T11:01:45.007 INFO:teuthology.orchestra.run.smithi145.stdout:Running transaction 2024-09-17T11:01:45.290 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T11:01:45.323 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T11:01:45.437 INFO:teuthology.orchestra.run.smithi145.stdout: Preparing : 1/1 2024-09-17T11:01:45.534 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-17T11:01:45.569 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-17T11:01:45.598 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-17T11:01:45.809 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-17T11:01:45.845 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T11:01:46.273 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-17T11:01:46.300 INFO:teuthology.orchestra.run.smithi145.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T11:01:46.328 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T11:01:46.328 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T11:01:46.328 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T11:01:46.328 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T11:01:46.329 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T11:01:46.329 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T11:01:46.697 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T11:01:46.697 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout:Installed: 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:01:46.698 INFO:teuthology.orchestra.run.smithi007.stdout:Complete! 2024-09-17T11:01:47.028 DEBUG:teuthology.parallel:result is None 2024-09-17T11:01:47.212 INFO:teuthology.orchestra.run.smithi145.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-17T11:01:47.213 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-17T11:01:47.213 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-17T11:01:47.213 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-17T11:01:47.213 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-17T11:01:47.213 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout:Installed: 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:01:47.529 INFO:teuthology.orchestra.run.smithi145.stdout:Complete! 2024-09-17T11:01:47.855 DEBUG:teuthology.parallel:result is None 2024-09-17T11:01:47.855 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-17T11:01:47.866 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-17T11:01:47.866 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:01:47.866 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:01:47.887 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-17T11:01:47.888 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_1 2024-09-17T11:01:47.947 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T11:01:47.947 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:47.947 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:01:45.670279283 +0000 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:47.948 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:47.948 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T11:01:48.018 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:01:48.018 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:01:48.018 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00012098 s, 4.2 MB/s 2024-09-17T11:01:48.020 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T11:01:48.079 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_2 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 960 Links: 1 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:48.138 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:01:45.670279283 +0000 2024-09-17T11:01:48.139 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:48.139 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:48.139 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:45.404269935 +0000 2024-09-17T11:01:48.139 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T11:01:48.205 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:01:48.205 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:01:48.205 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000113061 s, 4.5 MB/s 2024-09-17T11:01:48.207 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T11:01:48.266 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_3 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:01:45.671279269 +0000 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:45.405270056 +0000 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:45.405270056 +0000 2024-09-17T11:01:48.324 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:45.405270056 +0000 2024-09-17T11:01:48.325 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T11:01:48.390 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:01:48.390 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:01:48.390 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000109019 s, 4.7 MB/s 2024-09-17T11:01:48.392 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T11:01:48.450 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/vg_nvme/lv_4 2024-09-17T11:01:48.507 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T11:01:48.507 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:48.507 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 957 Links: 1 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:01:45.671279269 +0000 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:45.403269815 +0000 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:45.403269815 +0000 2024-09-17T11:01:48.508 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:45.403269815 +0000 2024-09-17T11:01:48.508 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T11:01:48.574 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:01:48.574 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:01:48.575 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000110075 s, 4.7 MB/s 2024-09-17T11:01:48.576 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T11:01:48.634 DEBUG:teuthology.orchestra.run.smithi007:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-17T11:01:48.789 INFO:teuthology.orchestra.run.smithi007.stdout:loop 2024-09-17T11:01:48.790 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_1... 2024-09-17T11:01:48.790 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-17T11:01:48.825 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-09-17T11:01:48.856 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_11 2024-09-17T11:01:48.910 INFO:teuthology.orchestra.run.smithi007.stdout:connecting to device: nvme1 2024-09-17T11:01:48.912 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_2... 2024-09-17T11:01:48.912 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-17T11:01:48.989 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-09-17T11:01:49.021 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_21 2024-09-17T11:01:49.057 INFO:teuthology.orchestra.run.smithi007.stdout:connecting to device: nvme2 2024-09-17T11:01:49.059 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_3... 2024-09-17T11:01:49.060 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-17T11:01:49.134 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-09-17T11:01:49.166 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_31 2024-09-17T11:01:49.198 INFO:teuthology.orchestra.run.smithi007.stdout:connecting to device: nvme3 2024-09-17T11:01:49.200 INFO:tasks.nvme_loop:Connecting nvme_loop smithi007:/dev/vg_nvme/lv_4... 2024-09-17T11:01:49.200 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-17T11:01:49.275 INFO:teuthology.orchestra.run.smithi007.stdout:1 2024-09-17T11:01:49.307 INFO:teuthology.orchestra.run.smithi007.stdout:/dev/vg_nvme/lv_41 2024-09-17T11:01:49.343 INFO:teuthology.orchestra.run.smithi007.stdout:connecting to device: nvme4 2024-09-17T11:01:49.345 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:01:49.345 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:01:49.402 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme list -o json 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout:{ 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: "Devices":[ 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: { 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: "NameSpace":1, 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T11:01:49.470 INFO:teuthology.orchestra.run.smithi007.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "SerialNumber":"a5b2d160a20a21b6b1c0", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "SectorSize":512 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: }, 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: { 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "NameSpace":1, 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:49.471 INFO:teuthology.orchestra.run.smithi007.stdout: "SerialNumber":"15a98e1b4775f43cd59e", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "SectorSize":512 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: }, 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: { 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "NameSpace":1, 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "SerialNumber":"1e365fc8974e88ec6c2a", 2024-09-17T11:01:49.472 INFO:teuthology.orchestra.run.smithi007.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "SectorSize":512 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: }, 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: { 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "NameSpace":1, 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "SerialNumber":"22a0bbda37f853726811", 2024-09-17T11:01:49.473 INFO:teuthology.orchestra.run.smithi007.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "SectorSize":512 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: }, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: { 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "NameSpace":1, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "Firmware":"E2010325", 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "ModelNumber":"INTEL SSDPED1D480GA", 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "SerialNumber":"PHMB751300GE480DGN", 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "UsedBytes":480103981056, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "MaximumLBA":937703088, 2024-09-17T11:01:49.474 INFO:teuthology.orchestra.run.smithi007.stdout: "PhysicalSize":480103981056, 2024-09-17T11:01:49.475 INFO:teuthology.orchestra.run.smithi007.stdout: "SectorSize":512 2024-09-17T11:01:49.475 INFO:teuthology.orchestra.run.smithi007.stdout: } 2024-09-17T11:01:49.475 INFO:teuthology.orchestra.run.smithi007.stdout: ] 2024-09-17T11:01:49.475 INFO:teuthology.orchestra.run.smithi007.stdout:} 2024-09-17T11:01:49.476 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:01:49.476 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:01:49.476 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/scratch_devs 2024-09-17T11:01:49.544 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:01:49.544 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:01:49.565 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-17T11:01:49.566 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_1 2024-09-17T11:01:49.624 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-17T11:01:49.624 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:49.624 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-17T11:01:49.624 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:49.624 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:49.625 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:01:46.637276582 +0000 2024-09-17T11:01:49.625 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:49.625 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:49.625 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:49.625 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-17T11:01:49.692 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:01:49.693 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:01:49.693 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000186353 s, 2.7 MB/s 2024-09-17T11:01:49.694 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-17T11:01:49.752 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_2 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 967 Links: 1 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:01:46.637276582 +0000 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.811 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.812 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-17T11:01:49.877 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:01:49.877 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:01:49.877 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000222151 s, 2.3 MB/s 2024-09-17T11:01:49.878 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-17T11:01:49.934 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_3 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 974 Links: 1 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:01:46.638276559 +0000 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.990 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:46.391281991 +0000 2024-09-17T11:01:49.991 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-17T11:01:50.054 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:01:50.054 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:01:50.055 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000196934 s, 2.6 MB/s 2024-09-17T11:01:50.056 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-17T11:01:50.112 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/vg_nvme/lv_4 2024-09-17T11:01:50.168 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-17T11:01:50.168 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-17T11:01:50.168 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:device_t:s0 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:01:46.638276559 +0000 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:50.169 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:46.392281969 +0000 2024-09-17T11:01:50.169 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-17T11:01:50.232 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:01:50.232 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:01:50.232 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000206833 s, 2.5 MB/s 2024-09-17T11:01:50.234 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-17T11:01:50.290 DEBUG:teuthology.orchestra.run.smithi145:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-17T11:01:50.427 INFO:teuthology.orchestra.run.smithi145.stdout:loop 2024-09-17T11:01:50.429 INFO:tasks.nvme_loop:Connecting nvme_loop smithi145:/dev/vg_nvme/lv_1... 2024-09-17T11:01:50.429 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-17T11:01:50.461 INFO:teuthology.orchestra.run.smithi145.stdout:1 2024-09-17T11:01:50.490 INFO:teuthology.orchestra.run.smithi145.stdout:/dev/vg_nvme/lv_11 2024-09-17T11:01:50.532 INFO:teuthology.orchestra.run.smithi145.stdout:connecting to device: nvme1 2024-09-17T11:01:50.534 INFO:tasks.nvme_loop:Connecting nvme_loop smithi145:/dev/vg_nvme/lv_2... 2024-09-17T11:01:50.534 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-17T11:01:50.608 INFO:teuthology.orchestra.run.smithi145.stdout:1 2024-09-17T11:01:50.653 INFO:teuthology.orchestra.run.smithi145.stdout:/dev/vg_nvme/lv_21 2024-09-17T11:01:50.685 INFO:teuthology.orchestra.run.smithi145.stdout:connecting to device: nvme2 2024-09-17T11:01:50.686 INFO:tasks.nvme_loop:Connecting nvme_loop smithi145:/dev/vg_nvme/lv_3... 2024-09-17T11:01:50.687 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-17T11:01:50.761 INFO:teuthology.orchestra.run.smithi145.stdout:1 2024-09-17T11:01:50.791 INFO:teuthology.orchestra.run.smithi145.stdout:/dev/vg_nvme/lv_31 2024-09-17T11:01:50.823 INFO:teuthology.orchestra.run.smithi145.stdout:connecting to device: nvme3 2024-09-17T11:01:50.824 INFO:tasks.nvme_loop:Connecting nvme_loop smithi145:/dev/vg_nvme/lv_4... 2024-09-17T11:01:50.825 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-17T11:01:50.898 INFO:teuthology.orchestra.run.smithi145.stdout:1 2024-09-17T11:01:50.928 INFO:teuthology.orchestra.run.smithi145.stdout:/dev/vg_nvme/lv_41 2024-09-17T11:01:50.963 INFO:teuthology.orchestra.run.smithi145.stdout:connecting to device: nvme4 2024-09-17T11:01:50.965 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:01:50.965 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:01:51.021 DEBUG:teuthology.orchestra.run.smithi145:> sudo nvme list -o json 2024-09-17T11:01:51.086 INFO:teuthology.orchestra.run.smithi145.stdout:{ 2024-09-17T11:01:51.086 INFO:teuthology.orchestra.run.smithi145.stdout: "Devices":[ 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: { 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "NameSpace":1, 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "DevicePath":"/dev/nvme4n1", 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "GenericPath":"/dev/ng4n1", 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "SerialNumber":"168043ff983458bfd827", 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: "SectorSize":512 2024-09-17T11:01:51.087 INFO:teuthology.orchestra.run.smithi145.stdout: }, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: { 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "NameSpace":1, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "DevicePath":"/dev/nvme3n1", 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "GenericPath":"/dev/ng3n1", 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "SerialNumber":"114bb37e137e9e141976", 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: "SectorSize":512 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: }, 2024-09-17T11:01:51.088 INFO:teuthology.orchestra.run.smithi145.stdout: { 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "NameSpace":1, 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "DevicePath":"/dev/nvme2n1", 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "GenericPath":"/dev/ng2n1", 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "SerialNumber":"55ed5629391979a7ccc9", 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "SectorSize":512 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: }, 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: { 2024-09-17T11:01:51.089 INFO:teuthology.orchestra.run.smithi145.stdout: "NameSpace":1, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "DevicePath":"/dev/nvme1n1", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "GenericPath":"/dev/ng1n1", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "Firmware":"5.14.0-5", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "ModelNumber":"Linux", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "SerialNumber":"e712ef1fd6f8ce8916be", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "UsedBytes":95995035648, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "MaximumLBA":187490304, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "PhysicalSize":95995035648, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "SectorSize":512 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: }, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: { 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "NameSpace":1, 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "DevicePath":"/dev/nvme0n1", 2024-09-17T11:01:51.090 INFO:teuthology.orchestra.run.smithi145.stdout: "GenericPath":"/dev/ng0n1", 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "Firmware":"8DV101H0", 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "ModelNumber":"INTEL SSDPEDMD400G4", 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "SerialNumber":"PHFT620500N9400BGN", 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "UsedBytes":400088457216, 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "MaximumLBA":781422768, 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "PhysicalSize":400088457216, 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: "SectorSize":512 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: } 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout: ] 2024-09-17T11:01:51.091 INFO:teuthology.orchestra.run.smithi145.stdout:} 2024-09-17T11:01:51.093 INFO:tasks.nvme_loop:new_devs ['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:01:51.093 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:01:51.093 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/scratch_devs 2024-09-17T11:01:51.158 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-17T11:01:51.252 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '7498493279982dfe87f00616198a5967475f6169'} 2024-09-17T11:01:51.252 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:01:51.253 INFO:tasks.cephadm:Cluster fsid is 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:01:51.253 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-17T11:01:51.253 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-17T11:01:51.253 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi007': '172.21.15.7', 'mon.smithi145': '172.21.15.145'} 2024-09-17T11:01:51.253 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-17T11:01:51.254 DEBUG:teuthology.orchestra.run.smithi007:> sudo hostname $(hostname -s) 2024-09-17T11:01:51.287 DEBUG:teuthology.orchestra.run.smithi145:> sudo hostname $(hostname -s) 2024-09-17T11:01:51.312 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-17T11:01:51.313 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:01:51.448 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '7498493279982dfe87f00616198a5967475f6169', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/56090/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4937-g74984932', 'node_name': '172.21.2.22+braggi22', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4937.g74984932'}, 'url': 'https://4.chacra.ceph.com/r/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-15 22:16:53.267223', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-09-17T11:01:51.585 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref main, sha1 7498493279982dfe87f00616198a5967475f6169 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:01:51.586 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm 2024-09-17T11:01:51.586 INFO:tasks.cephadm:Downloading cephadm from url: https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm 2024-09-17T11:01:51.587 DEBUG:teuthology.orchestra.run.smithi007:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:51.982 INFO:teuthology.orchestra.run.smithi007.stdout:-rw-r--r--. 1 ubuntu ubuntu 804299 Sep 17 11:01 /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:51.982 DEBUG:teuthology.orchestra.run.smithi145:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/7498493279982dfe87f00616198a5967475f6169/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:52.360 INFO:teuthology.orchestra.run.smithi145.stdout:-rw-r--r--. 1 ubuntu ubuntu 804299 Sep 17 11:01 /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:52.360 DEBUG:teuthology.orchestra.run.smithi007:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:52.381 DEBUG:teuthology.orchestra.run.smithi145:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-17T11:01:52.406 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 on all hosts... 2024-09-17T11:01:52.406 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 pull 2024-09-17T11:01:52.424 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 pull 2024-09-17T11:01:53.930 INFO:teuthology.orchestra.run.smithi145.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:01:54.070 INFO:teuthology.orchestra.run.smithi007.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:03:00.217 INFO:teuthology.orchestra.run.smithi007.stdout:{ 2024-09-17T11:03:00.218 INFO:teuthology.orchestra.run.smithi007.stdout: "ceph_version": "ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev)", 2024-09-17T11:03:00.218 INFO:teuthology.orchestra.run.smithi007.stdout: "image_id": "6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76", 2024-09-17T11:03:00.218 INFO:teuthology.orchestra.run.smithi007.stdout: "repo_digests": [ 2024-09-17T11:03:00.218 INFO:teuthology.orchestra.run.smithi007.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb" 2024-09-17T11:03:00.218 INFO:teuthology.orchestra.run.smithi007.stdout: ] 2024-09-17T11:03:00.219 INFO:teuthology.orchestra.run.smithi007.stdout:} 2024-09-17T11:03:07.025 INFO:teuthology.orchestra.run.smithi145.stdout:{ 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout: "ceph_version": "ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev)", 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout: "image_id": "6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76", 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout: "repo_digests": [ 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb" 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout: ] 2024-09-17T11:03:07.026 INFO:teuthology.orchestra.run.smithi145.stdout:} 2024-09-17T11:03:07.052 DEBUG:teuthology.orchestra.run.smithi007:> sudo mkdir -p /etc/ceph 2024-09-17T11:03:07.087 DEBUG:teuthology.orchestra.run.smithi145:> sudo mkdir -p /etc/ceph 2024-09-17T11:03:07.114 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 777 /etc/ceph 2024-09-17T11:03:07.156 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 777 /etc/ceph 2024-09-17T11:03:07.181 INFO:tasks.cephadm:Writing seed config... 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-17T11:03:07.183 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-17T11:03:07.184 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:03:07.184 DEBUG:teuthology.orchestra.run.smithi007:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-17T11:03:07.214 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 3df3defa-74e4-11ef-bceb-c7b262605968 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-17T11:03:07.215 DEBUG:teuthology.orchestra.run.smithi007:mon.smithi007> sudo journalctl -f -n 0 -u ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service 2024-09-17T11:03:07.257 INFO:tasks.cephadm:Bootstrapping... 2024-09-17T11:03:07.257 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 -v bootstrap --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.7 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:03:07.470 INFO:teuthology.orchestra.run.smithi007.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:03:07.470 INFO:teuthology.orchestra.run.smithi007.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169', '-v', 'bootstrap', '--fsid', '3df3defa-74e4-11ef-bceb-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.7', '--skip-admin-label'] 2024-09-17T11:03:07.471 INFO:teuthology.orchestra.run.smithi007.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-17T11:03:07.471 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying podman|docker is present... 2024-09-17T11:03:07.495 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stdout 5.2.2 2024-09-17T11:03:07.495 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying lvm2 is present... 2024-09-17T11:03:07.495 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying time synchronization is in place... 2024-09-17T11:03:07.502 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T11:03:07.503 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T11:03:07.509 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T11:03:07.509 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:03:07.516 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout enabled 2024-09-17T11:03:07.522 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout active 2024-09-17T11:03:07.522 INFO:teuthology.orchestra.run.smithi007.stdout:Unit chronyd.service is enabled and running 2024-09-17T11:03:07.522 INFO:teuthology.orchestra.run.smithi007.stdout:Repeating the final host check... 2024-09-17T11:03:07.545 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stdout 5.2.2 2024-09-17T11:03:07.545 INFO:teuthology.orchestra.run.smithi007.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-17T11:03:07.545 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl is present 2024-09-17T11:03:07.545 INFO:teuthology.orchestra.run.smithi007.stdout:lvcreate is present 2024-09-17T11:03:07.551 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-17T11:03:07.552 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-17T11:03:07.558 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-17T11:03:07.558 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:03:07.565 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout enabled 2024-09-17T11:03:07.571 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout active 2024-09-17T11:03:07.571 INFO:teuthology.orchestra.run.smithi007.stdout:Unit chronyd.service is enabled and running 2024-09-17T11:03:07.571 INFO:teuthology.orchestra.run.smithi007.stdout:Host looks OK 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Cluster fsid: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Acquiring lock 140466744493872 on /run/cephadm/3df3defa-74e4-11ef-bceb-c7b262605968.lock 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Lock 140466744493872 acquired on /run/cephadm/3df3defa-74e4-11ef-bceb-c7b262605968.lock 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying IP 172.21.15.7 port 3300 ... 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying IP 172.21.15.7 port 6789 ... 2024-09-17T11:03:07.572 INFO:teuthology.orchestra.run.smithi007.stdout:Base mon IP(s) is [172.21.15.7:3300, 172.21.15.7:6789], mon addrv is [v2:172.21.15.7:3300,v1:172.21.15.7:6789] 2024-09-17T11:03:07.575 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.7 metric 100 2024-09-17T11:03:07.576 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.7 metric 100 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1783sec hoplimit 64 pref medium 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-17T11:03:07.581 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:15ea/64 scope link 2024-09-17T11:03:07.582 INFO:teuthology.orchestra.run.smithi007.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-17T11:03:07.582 INFO:teuthology.orchestra.run.smithi007.stdout:Mon IP `172.21.15.7` is in CIDR network `172.21.0.0/20` 2024-09-17T11:03:07.582 INFO:teuthology.orchestra.run.smithi007.stdout:Mon IP `172.21.15.7` is in CIDR network `172.21.0.0/20` 2024-09-17T11:03:07.583 INFO:teuthology.orchestra.run.smithi007.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-17T11:03:07.583 INFO:teuthology.orchestra.run.smithi007.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-17T11:03:07.583 INFO:teuthology.orchestra.run.smithi007.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stdout 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169... 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Getting image source signatures 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Copying blob sha256:89cd78ca29aaec9efd0f7c5ff71447705f964d133563bccc90c7979c6d4b526f 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Copying config sha256:6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 2024-09-17T11:03:08.151 INFO:teuthology.orchestra.run.smithi007.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-17T11:03:09.064 INFO:teuthology.orchestra.run.smithi007.stdout:ceph: stdout ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev) 2024-09-17T11:03:09.065 INFO:teuthology.orchestra.run.smithi007.stdout:Ceph version: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev) 2024-09-17T11:03:09.065 INFO:teuthology.orchestra.run.smithi007.stdout:Extracting ceph user uid/gid from container image... 2024-09-17T11:03:09.920 INFO:teuthology.orchestra.run.smithi007.stdout:stat: stdout 167 167 2024-09-17T11:03:09.920 INFO:teuthology.orchestra.run.smithi007.stdout:Creating initial keys... 2024-09-17T11:03:10.767 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph-authtool: stdout AQDuYelm26AXDhAAY1WAbjGAC+QnnPHZgah6nA== 2024-09-17T11:03:11.706 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph-authtool: stdout AQDvYelmFUyaBhAAxNeOZFH3HZrTOJBez7Do0w== 2024-09-17T11:03:12.795 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph-authtool: stdout AQDwYelmrKDVARAA4/bfAj9db3FlPq98PJJlSA== 2024-09-17T11:03:12.796 INFO:teuthology.orchestra.run.smithi007.stdout:Creating initial monmap... 2024-09-17T11:03:13.710 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T11:03:13.710 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:monmaptool for smithi007 [v2:172.21.15.7:3300,v1:172.21.15.7:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:setting min_mon_release = quincy 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: set fsid to 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:03:13.711 INFO:teuthology.orchestra.run.smithi007.stdout:Creating mon... 2024-09-17T11:03:14.659 INFO:teuthology.orchestra.run.smithi007.stdout:create mon.smithi007 on 2024-09-17T11:03:15.038 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-17T11:03:15.233 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target. 2024-09-17T11:03:15.234 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target. 2024-09-17T11:03:15.460 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007 2024-09-17T11:03:15.460 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service: Unit ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service not loaded. 2024-09-17T11:03:15.633 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target.wants/ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service → /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968@.service. 2024-09-17T11:03:16.157 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:03:16.157 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout disabled 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:firewalld.service is not enabled 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mon to start... 2024-09-17T11:03:16.164 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mon... 2024-09-17T11:03:17.191 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:17 smithi007 ceph-mon[25305]: from='client.? 172.21.15.7:0/879480656' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout cluster: 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout id: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout services: 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi007 (age 0.540505s) 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-17T11:03:17.195 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout data: 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout pgs: 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:mon is available 2024-09-17T11:03:17.196 INFO:teuthology.orchestra.run.smithi007.stdout:Assimilating anything we can from ceph.conf... 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout fsid = 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.7:3300,v1:172.21.15.7:6789] 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T11:03:18.136 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T11:03:18.137 INFO:teuthology.orchestra.run.smithi007.stdout:Generating new minimal ceph.conf... 2024-09-17T11:03:18.417 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:18 smithi007 ceph-mon[25305]: from='client.? 172.21.15.7:0/2381562704' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-17T11:03:18.417 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:18 smithi007 ceph-mon[25305]: from='client.? 172.21.15.7:0/2381562704' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-17T11:03:19.048 INFO:teuthology.orchestra.run.smithi007.stdout:Restarting the monitor... 2024-09-17T11:03:19.105 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 systemd[1]: Stopping Ceph mon.smithi007 for 3df3defa-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:03:19.368 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 ceph-mon[25305]: from='client.? 172.21.15.7:0/4098938231' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:03:19.369 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007[25301]: 2024-09-17T11:03:19.305+0000 7f1379b6f640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi007 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T11:03:19.369 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007[25301]: 2024-09-17T11:03:19.305+0000 7f1379b6f640 -1 mon.smithi007@0(leader) e1 *** Got Signal Terminated *** 2024-09-17T11:03:19.623 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 podman[25547]: 2024-09-17 11:03:19.367972315 +0000 UTC m=+0.153082881 container died e0ff624c91782748f38aeadd194364587de0ed3651faca8867eff7b023920a14 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, org.label-schema.build-date=20240731, RELEASE=main-7498493, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-17T11:03:19.624 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 podman[25547]: 2024-09-17 11:03:19.605859403 +0000 UTC m=+0.390969968 container cleanup e0ff624c91782748f38aeadd194364587de0ed3651faca8867eff7b023920a14 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=main-7498493, ceph=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2) 2024-09-17T11:03:19.624 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 bash[25547]: ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007 2024-09-17T11:03:20.012 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:19 smithi007 podman[25559]: 2024-09-17 11:03:19.781966882 +0000 UTC m=+0.411396491 container remove e0ff624c91782748f38aeadd194364587de0ed3651faca8867eff7b023920a14 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, RELEASE=main-7498493, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_CLEAN=True) 2024-09-17T11:03:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 systemd[1]: ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service: Deactivated successfully. 2024-09-17T11:03:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 systemd[1]: Stopped Ceph mon.smithi007 for 3df3defa-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:03:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 systemd[1]: Starting Ceph mon.smithi007 for 3df3defa-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:03:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 podman[25651]: 2024-09-17 11:03:20.13869653 +0000 UTC m=+0.016069141 image pull 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 2024-09-17T11:03:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 podman[25651]: 2024-09-17 11:03:20.241107059 +0000 UTC m=+0.118479728 container create 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, io.buildah.version=1.37.2, RELEASE=main-7498493, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, ceph=True) 2024-09-17T11:03:20.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 podman[25651]: 2024-09-17 11:03:20.443311273 +0000 UTC m=+0.320683883 container init 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, RELEASE=main-7498493, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD) 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 podman[25651]: 2024-09-17 11:03:20.446463878 +0000 UTC m=+0.323836489 container start 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , RELEASE=main-7498493, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev), process ceph-mon, pid 2 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: pidfile_write: ignore empty --pid-file 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: load: jerasure load: lrc 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: RocksDB version: 7.9.2 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Git sha 0 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Compile date 2024-09-15 20:52:36 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: DB SUMMARY 2024-09-17T11:03:20.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: DB Session ID: 5PPLFV80ACHXHOWCY3EJ 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: CURRENT file: CURRENT 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi007/store.db dir, Total Num: 1, files: 000008.sst 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi007/store.db: 000009.log size: 89056 ; 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.error_if_exists: 0 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.create_if_missing: 0 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.paranoid_checks: 1 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T11:03:20.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.env: 0x5653f4da8120 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.info_log: 0x5653f733b8e0 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.statistics: (nil) 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.use_fsync: 0 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_log_file_size: 0 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_fallocate: 1 2024-09-17T11:03:20.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.use_direct_reads: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.db_log_dir: 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.wal_dir: 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T11:03:20.787 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.write_buffer_manager: 0x5653f733fb80 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T11:03:20.788 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.unordered_write: 0 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.row_cache: None 2024-09-17T11:03:20.789 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.wal_filter: None 2024-09-17T11:03:20.790 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T11:03:20.790 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.two_write_queues: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.wal_compression: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.atomic_flush: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.log_readahead_size: 0 2024-09-17T11:03:20.791 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_background_jobs: 2 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_background_compactions: -1 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_subcompactions: 1 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T11:03:20.792 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_open_files: -1 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T11:03:20.793 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_background_flushes: -1 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Compression algorithms supported: 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kZSTD supported: 0 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kXpressCompression supported: 0 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kBZip2Compression supported: 0 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kLZ4Compression supported: 1 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kZlibCompression supported: 1 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: kSnappyCompression supported: 1 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi007/store.db/MANIFEST-000010 2024-09-17T11:03:20.794 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.merge_operator: 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_filter: None 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5653f733b540) 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: cache_index_and_filter_blocks: 1 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T11:03:20.795 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: pin_top_level_index_and_filter: 1 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: index_type: 0 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: data_block_index_type: 0 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: index_shortening: 1 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: checksum: 4 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: no_block_cache: 0 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_cache: 0x5653f732f610 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_cache_name: BinnedLRUCache 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_cache_options: 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: capacity : 536870912 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: num_shard_bits : 4 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: strict_capacity_limit : 0 2024-09-17T11:03:20.796 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: high_pri_pool_ratio: 0.000 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_cache_compressed: (nil) 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: persistent_cache: (nil) 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_size: 4096 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_size_deviation: 10 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_restart_interval: 16 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: index_block_restart_interval: 1 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: metadata_block_size: 4096 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: partition_filters: 0 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: use_delta_encoding: 1 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: filter_policy: bloomfilter 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: whole_key_filtering: 1 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: verify_compression: 0 2024-09-17T11:03:20.797 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: read_amp_bytes_per_bit: 0 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: format_version: 5 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: enable_index_compression: 1 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: block_align: 0 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: max_auto_readahead_size: 262144 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: prepopulate_block_cache: 0 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: initial_auto_readahead_size: 8192 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression: NoCompression 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T11:03:20.798 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.num_levels: 7 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T11:03:20.799 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T11:03:20.800 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T11:03:20.801 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T11:03:20.802 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.inplace_update_support: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.bloom_locality: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.max_successive_merges: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T11:03:20.803 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.ttl: 2592000 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enable_blob_files: false 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.min_blob_size: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T11:03:20.804 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi007/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: b95b9a93-d827-4e4b-bcf8-6f23ba89484f 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571000476055, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571000476969, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85832, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83972, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10002, "raw_average_key_size": 46, "raw_value_size": 78221, "raw_average_value_size": 362, "num_data_blocks": 11, "num_entries": 216, "num_filter_entries": 216, "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": 1726571000, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "b95b9a93-d827-4e4b-bcf8-6f23ba89484f", "db_session_id": "5PPLFV80ACHXHOWCY3EJ", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571000477066, "job": 1, "event": "recovery_finished"} 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi007/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5653f735ee00 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: DB pointer 0x5653f7460000 2024-09-17T11:03:20.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ** DB Stats ** 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ** Compaction Stats [default] ** 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: L0 2/0 85.72 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 141.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:03:20.806 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Sum 2/0 85.72 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 141.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.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 141.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ** Compaction Stats [default] ** 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.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 141.9 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T11:03:20.807 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Cumulative compaction: 0.00 GB write, 25.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Interval compaction: 0.00 GB write, 25.66 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Block cache BinnedLRUCache@0x5653f732f610#2 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: starting mon.smithi007 rank 0 at public addrs [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] at bind addrs [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi007 fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???) e1 preinit fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).mds e1 new map 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).mds e1 print_map 2024-09-17T11:03:20.808 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: e1 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: btime 2024-09-17T11:03:16:098930+0000 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: legacy client fscid: -1 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: No filesystems configured 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mon.smithi007 is new leader, mons smithi007 in quorum (ranks 0) 2024-09-17T11:03:20.809 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: monmap epoch 1 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: last_changed 2024-09-17T11:03:13.093571+0000 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: created 2024-09-17T11:03:13.093571+0000 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: min_mon_release 19 (squid) 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: election_strategy: 1 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: 0: [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon.smithi007 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: fsmap 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: osdmap e1: 0 total, 0 up, 0 in 2024-09-17T11:03:20.810 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:20 smithi007 ceph-mon[25669]: mgrmap e1: no daemons active 2024-09-17T11:03:21.209 INFO:teuthology.orchestra.run.smithi007.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-17T11:03:21.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:21 smithi007 bash[25651]: 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a 2024-09-17T11:03:21.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:21 smithi007 systemd[1]: Started Ceph mon.smithi007 for 3df3defa-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:03:25.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:25 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1533987146' entity='client.admin' 2024-09-17T11:03:30.770 INFO:teuthology.orchestra.run.smithi007.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-17T11:03:31.024 INFO:teuthology.orchestra.run.smithi007.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:03:31.025 INFO:teuthology.orchestra.run.smithi007.stdout:Creating mgr... 2024-09-17T11:03:31.026 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-17T11:03:31.026 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-17T11:03:31.026 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-17T11:03:32.012 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mgr.smithi007.jghsql 2024-09-17T11:03:32.012 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mgr.smithi007.jghsql.service: Unit ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mgr.smithi007.jghsql.service not loaded. 2024-09-17T11:03:32.323 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968.target.wants/ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mgr.smithi007.jghsql.service → /etc/systemd/system/ceph-3df3defa-74e4-11ef-bceb-c7b262605968@.service. 2024-09-17T11:03:32.845 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:03:32.845 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout disabled 2024-09-17T11:03:32.853 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:03:32.853 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:03:32.853 INFO:teuthology.orchestra.run.smithi007.stdout:firewalld.service is not enabled 2024-09-17T11:03:32.853 INFO:teuthology.orchestra.run.smithi007.stdout:Not possible to enable service . firewalld.service is not available 2024-09-17T11:03:32.862 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:03:32.862 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout disabled 2024-09-17T11:03:32.869 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:03:32.869 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:03:32.870 INFO:teuthology.orchestra.run.smithi007.stdout:firewalld.service is not enabled 2024-09-17T11:03:32.870 INFO:teuthology.orchestra.run.smithi007.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-17T11:03:32.870 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mgr to start... 2024-09-17T11:03:32.870 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mgr... 2024-09-17T11:03:33.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:33 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4228341328' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:03:34.065 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsid": "3df3defa-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:34.066 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "smithi007" 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_age": 13, 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:03:34.067 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:03:34.068 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:03:34.068 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:03:34.068 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:03:34.068 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:03:34.071 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.071 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:03:34.071 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:03:34.071 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:03:34.071 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:03:16:098930+0000", 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.072 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:03:16.099555+0000", 2024-09-17T11:03:34.073 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:34.074 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:34.074 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:03:34.074 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:03:34.074 INFO:teuthology.orchestra.run.smithi007.stdout:mgr not available, waiting (1/15)... 2024-09-17T11:03:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:36 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2504470630' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsid": "3df3defa-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.156 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "smithi007" 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_age": 16, 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.157 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:03:37.158 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:03:37.162 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:03:16:098930+0000", 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.163 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:03:16.099555+0000", 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:03:37.164 INFO:teuthology.orchestra.run.smithi007.stdout:mgr not available, waiting (2/15)... 2024-09-17T11:03:38.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: Activating manager daemon smithi007.jghsql 2024-09-17T11:03:38.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: mgrmap e2: smithi007.jghsql(active, starting, since 0.00319216s) 2024-09-17T11:03:38.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:03:38.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi007.jghsql", "id": "smithi007.jghsql"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: Manager daemon smithi007.jghsql is now available 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/trash_purge_schedule"} : dispatch 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:38.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:38 smithi007 ceph-mon[25669]: from='mgr.14100 172.21.15.7:0/1114553589' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:40.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:40 smithi007 ceph-mon[25669]: mgrmap e3: smithi007.jghsql(active, since 1.00788s) 2024-09-17T11:03:40.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:40 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3136490736' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-17T11:03:40.336 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:40.336 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:03:40.336 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsid": "3df3defa-74e4-11ef-bceb-c7b262605968", 2024-09-17T11:03:40.336 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "health": { 2024-09-17T11:03:40.336 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 0 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "smithi007" 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "quorum_age": 19, 2024-09-17T11:03:40.337 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-17T11:03:40.338 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-17T11:03:40.339 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "btime": "2024-09-17T11:03:16:098930+0000", 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-17T11:03:40.340 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "restful" 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ], 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "modified": "2024-09-17T11:03:16.099555+0000", 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout }, 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:03:40.341 INFO:teuthology.orchestra.run.smithi007.stdout:mgr is available 2024-09-17T11:03:41.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:41 smithi007 ceph-mon[25669]: mgrmap e4: smithi007.jghsql(active, since 2s) 2024-09-17T11:03:41.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3365862964' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [global] 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout fsid = 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.7:3300,v1:172.21.15.7:6789] 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-17T11:03:41.556 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout [osd] 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-17T11:03:41.557 INFO:teuthology.orchestra.run.smithi007.stdout:Enabling cephadm module... 2024-09-17T11:03:42.608 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:42 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2996830729' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-17T11:03:43.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:43 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2996830729' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-17T11:03:43.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:43 smithi007 ceph-mon[25669]: mgrmap e5: smithi007.jghsql(active, since 4s) 2024-09-17T11:03:44.507 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:44 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1749346439' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "active_name": "smithi007.jghsql", 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for the mgr to restart... 2024-09-17T11:03:44.510 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mgr epoch 5... 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: Active manager daemon smithi007.jghsql restarted 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: Activating manager daemon smithi007.jghsql 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: osdmap e2: 0 total, 0 up, 0 in 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: mgrmap e6: smithi007.jghsql(active, starting, since 0.00319724s) 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi007.jghsql", "id": "smithi007.jghsql"} : dispatch 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:03:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:47 smithi007 ceph-mon[25669]: Manager daemon smithi007.jghsql is now available 2024-09-17T11:03:49.057 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:03:49.058 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-17T11:03:49.058 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T11:03:49.058 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:03:49.058 INFO:teuthology.orchestra.run.smithi007.stdout:mgr epoch 5 is available 2024-09-17T11:03:49.058 INFO:teuthology.orchestra.run.smithi007.stdout:Verifying orchestrator module is enabled... 2024-09-17T11:03:49.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:49 smithi007 ceph-mon[25669]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T11:03:49.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:49 smithi007 ceph-mon[25669]: mgrmap e7: smithi007.jghsql(active, since 1.00502s) 2024-09-17T11:03:49.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:49 smithi007 ceph-mon[25669]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T11:03:50.927 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: Found migration_current of "None". Setting to last migration. 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/trash_purge_schedule"} : dispatch 2024-09-17T11:03:50.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:50 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2847012131' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-17T11:03:51.222 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-17T11:03:51.222 INFO:teuthology.orchestra.run.smithi007.stdout:Setting orchestrator backend to cephadm... 2024-09-17T11:03:51.863 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: [17/Sep/2024:11:03:50] ENGINE Bus STARTING 2024-09-17T11:03:51.864 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2847012131' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-17T11:03:51.864 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: mgrmap e8: smithi007.jghsql(active, since 3s) 2024-09-17T11:03:51.864 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: [17/Sep/2024:11:03:50] ENGINE Serving on https://172.21.15.7:7150 2024-09-17T11:03:51.864 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: [17/Sep/2024:11:03:50] ENGINE Error in HTTPServer.serve 2024-09-17T11:03:51.865 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Traceback (most recent call last): 2024-09-17T11:03:51.865 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:03:51.865 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:03:51.865 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:03:51.865 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._run(expiration_interval) 2024-09-17T11:03:51.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:03:51.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:03:51.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:03:51.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:03:51.866 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:03:51.867 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s = self.context.wrap_socket( 2024-09-17T11:03:51.867 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:03:51.867 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: return self.sslsocket_class._create( 2024-09-17T11:03:51.867 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:03:51.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self.do_handshake() 2024-09-17T11:03:51.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:03:51.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._sslobj.do_handshake() 2024-09-17T11:03:51.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:03:51.868 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: [17/Sep/2024:11:03:50] ENGINE Serving on http://172.21.15.7:8765 2024-09-17T11:03:51.869 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: [17/Sep/2024:11:03:50] ENGINE Bus STARTED 2024-09-17T11:03:51.869 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:51 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:03:52.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:52 smithi007 ceph-mon[25669]: mgrmap e9: smithi007.jghsql(active, since 4s) 2024-09-17T11:03:52.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:52 smithi007 ceph-mon[25669]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:03:52.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:52 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:52.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:52 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:03:53.536 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-17T11:03:53.537 INFO:teuthology.orchestra.run.smithi007.stdout:Generating ssh key... 2024-09-17T11:03:53.928 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:53 smithi007 ceph-mon[25669]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:03:55.432 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:55 smithi007 ceph-mon[25669]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:03:55.432 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:55 smithi007 ceph-mon[25669]: Generating ssh key... 2024-09-17T11:03:55.432 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:55 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:55.432 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:55 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:03:56.024 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUJertWoujiUOHmw0ad1ca4acx/w9khgQ5Rc5g9rLniGdjP8ol+jMMUapt81hbh795MvcNQONK7ImkXoeawwDo+Ga/YstR/d2LmiNGoBnw03g2pAFVrBQOCATaltANwaIs6ZyORwF+iFBsrt3luRXFtbQgwJsQt2zi9qnGZU9+7iuE0tn9bT7NQcN7XFiK2SsmrDXjIcww3/hGAMdP/O5R9fCz5dqwYbj1vjdzNUuw0HF7lUFp1IISnwz+82rjRliEJGCfPLm2PJ5f5lRPEPcU6yVfnQ23N591L7FppgNsJFlaIG3FNDPYVK9GdEOtcQQff4xFIX5OHCG3aGztoY8+gwW6u4tDqzYa1MADqCxZB7OXYdeMtgzymSLdiHHGCqWohz5SJM6JqBqNt/61BEqekinqQjz/tjgq4J8QtHFMFuIA/9v42VtQmdjxv6TCnj+hjLWsqxi1p4AiCRWNNRTC14MsU+J4jwUrgyCFHVHxUrO9VPH39QKUflWHm3SlVf0= ceph-3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:03:56.024 INFO:teuthology.orchestra.run.smithi007.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:03:56.024 INFO:teuthology.orchestra.run.smithi007.stdout:Adding key to root@localhost authorized_keys... 2024-09-17T11:03:56.035 INFO:teuthology.orchestra.run.smithi007.stdout:Adding host smithi007... 2024-09-17T11:03:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:56 smithi007 ceph-mon[25669]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:03:57.660 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:57 smithi007 ceph-mon[25669]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi007", "addr": "172.21.15.7", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:03:58.521 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:03:58 smithi007 ceph-mon[25669]: Deploying cephadm binary to smithi007 2024-09-17T11:04:01.097 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Added host 'smithi007' with addr '172.21.15.7' 2024-09-17T11:04:01.097 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying mon service with default placement... 2024-09-17T11:04:01.624 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:01 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:01.624 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:01 smithi007 ceph-mon[25669]: Added host smithi007 2024-09-17T11:04:01.624 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:01 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:04:02.902 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-17T11:04:02.902 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying mgr service with default placement... 2024-09-17T11:04:03.023 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:02 smithi007 ceph-mon[25669]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:03.023 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:02 smithi007 ceph-mon[25669]: Saving service mon spec with placement count:5 2024-09-17T11:04:03.023 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:02 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:04.468 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-17T11:04:04.468 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying crash service with default placement... 2024-09-17T11:04:04.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:04 smithi007 ceph-mon[25669]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:04.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:04 smithi007 ceph-mon[25669]: Saving service mgr spec with placement count:2 2024-09-17T11:04:04.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:04 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:04.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:04 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:04.760 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:04 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:06.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:06 smithi007 ceph-mon[25669]: from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:06.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:06 smithi007 ceph-mon[25669]: Saving service crash spec with placement * 2024-09-17T11:04:06.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:06 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:06.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:06 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:06.278 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-17T11:04:06.278 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying ceph-exporter service with default placement... 2024-09-17T11:04:07.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:07 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:07.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:07 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:08.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:08 smithi007 ceph-mon[25669]: from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:08.429 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:08 smithi007 ceph-mon[25669]: Saving service ceph-exporter spec with placement * 2024-09-17T11:04:08.432 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-17T11:04:08.432 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying prometheus service with default placement... 2024-09-17T11:04:09.688 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:09 smithi007 ceph-mon[25669]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:09.689 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:09 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:09.689 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-17T11:04:09.689 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying grafana service with default placement... 2024-09-17T11:04:10.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:10 smithi007 ceph-mon[25669]: from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:10.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:10 smithi007 ceph-mon[25669]: Saving service prometheus spec with placement count:1 2024-09-17T11:04:10.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:10 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:10.936 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-17T11:04:10.937 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying node-exporter service with default placement... 2024-09-17T11:04:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:11 smithi007 ceph-mon[25669]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:11 smithi007 ceph-mon[25669]: from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:11 smithi007 ceph-mon[25669]: Saving service grafana spec with placement count:1 2024-09-17T11:04:12.376 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-17T11:04:12.376 INFO:teuthology.orchestra.run.smithi007.stdout:Deploying alertmanager service with default placement... 2024-09-17T11:04:13.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:12 smithi007 ceph-mon[25669]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:13.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:12 smithi007 ceph-mon[25669]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:13.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:12 smithi007 ceph-mon[25669]: Saving service node-exporter spec with placement * 2024-09-17T11:04:13.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:12 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:13.623 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-17T11:04:14.243 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:14 smithi007 ceph-mon[25669]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:14.243 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:14 smithi007 ceph-mon[25669]: Saving service alertmanager spec with placement count:1 2024-09-17T11:04:14.244 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:14 smithi007 ceph-mon[25669]: from='mgr.14118 172.21.15.7:0/791951353' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:15.473 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:15 smithi007 ceph-mon[25669]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:15.473 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:15 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/623323505' entity='client.admin' 2024-09-17T11:04:16.027 INFO:teuthology.orchestra.run.smithi007.stdout:Enabling the dashboard module... 2024-09-17T11:04:16.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:16 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4268719516' entity='client.admin' 2024-09-17T11:04:16.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:16 smithi007 ceph-mon[25669]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:17.771 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:17 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3811106096' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-17T11:04:18.727 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:18 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3811106096' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-17T11:04:18.727 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:18 smithi007 ceph-mon[25669]: mgrmap e10: smithi007.jghsql(active, since 29s) 2024-09-17T11:04:19.298 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:19.298 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "epoch": 10, 2024-09-17T11:04:19.298 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-17T11:04:19.298 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "active_name": "smithi007.jghsql", 2024-09-17T11:04:19.298 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-17T11:04:19.299 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:19.299 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for the mgr to restart... 2024-09-17T11:04:19.299 INFO:teuthology.orchestra.run.smithi007.stdout:Waiting for mgr epoch 10... 2024-09-17T11:04:19.550 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:19 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1486435147' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: Active manager daemon smithi007.jghsql restarted 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: Activating manager daemon smithi007.jghsql 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: osdmap e3: 0 total, 0 up, 0 in 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: mgrmap e11: smithi007.jghsql(active, starting, since 0.00325044s) 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi007.jghsql", "id": "smithi007.jghsql"} : dispatch 2024-09-17T11:04:23.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:04:23.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:04:23.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:04:23.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:22 smithi007 ceph-mon[25669]: Manager daemon smithi007.jghsql is now available 2024-09-17T11:04:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:23 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:04:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:23 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:04:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:23 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/trash_purge_schedule"} : dispatch 2024-09-17T11:04:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:23 smithi007 ceph-mon[25669]: mgrmap e12: smithi007.jghsql(active, since 1.0062s) 2024-09-17T11:04:24.286 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout { 2024-09-17T11:04:24.287 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 12, 2024-09-17T11:04:24.287 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-17T11:04:24.287 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout } 2024-09-17T11:04:24.287 INFO:teuthology.orchestra.run.smithi007.stdout:mgr epoch 10 is available 2024-09-17T11:04:24.287 INFO:teuthology.orchestra.run.smithi007.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-17T11:04:24.968 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:24 smithi007 ceph-mon[25669]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-17T11:04:24.968 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:24 smithi007 ceph-mon[25669]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-17T11:04:26.149 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: mgrmap e13: smithi007.jghsql(active, since 2s) 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: [17/Sep/2024:11:04:24] ENGINE Bus STARTING 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: [17/Sep/2024:11:04:24] ENGINE Serving on https://172.21.15.7:7150 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: [17/Sep/2024:11:04:24] ENGINE Error in HTTPServer.serve 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Traceback (most recent call last): 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:04:26.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._run(expiration_interval) 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s = self.context.wrap_socket( 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: return self.sslsocket_class._create( 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self.do_handshake() 2024-09-17T11:04:26.151 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._sslobj.do_handshake() 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: [17/Sep/2024:11:04:25] ENGINE Serving on http://172.21.15.7:8765 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: [17/Sep/2024:11:04:25] ENGINE Bus STARTED 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:26.152 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:25 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:27.063 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:26 smithi007 ceph-mon[25669]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:27.719 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIFDzCCAvegAwIBAgIUKKlP67lyEXQcWDrjxPKBjOwIkyMwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxNzExMDQyNloXDTM0\nMDkxODExMDQyNlowFjEUMBIGA1UEAwwLMTcyLjIxLjE1LjcwggIiMA0GCSqGSIb3\nDQEBAQUAA4ICDwAwggIKAoICAQDWtR/uMTCPr6dgJTEBol+tM+6NYG1n7FJ/dgZ6\n+mxmrVx4K5jM7s7OoLbxA6WcTU0fdOiDPXvHNFKtGLAadjutaJWeUO5qN9DgJWSC\nUd8SMaOW1JQ9pSxo+7srjXq0qeX6fojxHcB1sYq1gAYVqB+JpVYYCcPYAqfZrs+u\njscVYHNUCFh+hkNW0D1bprxlHz4xSYDBzm5WOFNKrbbh4Y8wXU94cXAzHeq24rzl\n05AdGUfFzlaXowU4KbSS4/NfMsUCNggr7EQBd17SN3EAzWCDvkdVdShl9UWWz2fQ\nUo3htEtHgDwPR+iA09EhlWpuKrTPBto2Kh/WH3UYkB0m6XmtkxJSjzebb3wBeDQC\nND9RZStei0BVNbEKlY/XHMpIYq2mIq0xfOx3kVXb4z/mHDWlY+o28VlqcFQoxzAm\npEy4CURmd33U7WzPgB0BtGoTsnxnubmgDnle3OGnMbetFWq5bu6I1LFbiA/VTK6s\naHbzTXBGH+Yl0/EsDfYQ8e2CEBEIeTuPmdwVpS1U5IkkFPXGsX/cqDNVWYn7toCz\nkqp8wildVEIK7aF+1dJsNiTsHFE9tm7mWKpCgWqa+56UCtnQiwY2uChqaSWq2PrT\nV4kiIf/jLbLpHbVB7BPYSMVLSW1/WpTb6IFgMuIkn8CO3FE5vaE8+Mr9x0sXbkHz\nW1tXnQIDAQABo1QwUjBCBgNVHREEOzA5gh5zbWl0aGkwMDcuZnJvbnQuc2VwaWEu\nY2VwaC5jb22CEWRhc2hib2FyZF9zZXJ2ZXJzhwSsFQ8HMAwGA1UdEwEB/wQCMAAw\nDQYJKoZIhvcNAQELBQADggIBAEHfBzmXgYSU3SuHGagGTtXMtkFk0zObhypFb4fo\nncvEy49SnqwIfyS2qdlb4XFuZtD9FwzxjX+TKNC3H1OWMkpwcLgfPUmpVO7uJotp\nPTCTO56ygjWbtimvLtkk/+OlppvK3U28hm95jCsTtF3gm+E/pAiKnc0yT0igPJ1h\ndMmQiRprQJV7OuW4HbaJw7ADv1w1UIyrtUlFZ5ZIsWsTDrrLYinrg9n2hHTC2pID\nQP8VOe6TAhiPshpDNo9jNI070okqtYYuT/Ub8vwrDdrMbIQV1kN2Tv61MlO0S0q9\n1XWTC+cdU2aO2+ikU4Mi4FjyvwoVz3TgkH5rZA8jSCXu0zyvG0a4Ma/Ap962/ZT3\n3RUP1c98rF7JZrc5kCv7Ls425d+zDrAYxFlyvoL0DJKoqm5EdHQZHvAGI9WbTc4d\nerQmpCd9Z8dPQt5iyRkQbG6WZ4VaC+zoiz0O5dBu9F/qwq2JA4Kh2bEjm/C/iBvN\nmzGAD/gX5QJ+0wP3Ze91aR4sty7sKrlIQe71YcCQzzyJGXqWYl+xdTR/YNXatQrp\npSgf7PtaEKNJJKZEQomhyo8GCfDIp0TJBzkiHSq26DdzgpTbq1lW/3rgtgqzMMYN\norhGFwe9yr9pl5EyNJCZ5e/X206xNloEM8fdVLCVat1UmvzSJ1VmryCmeSySQ7iK\nH0bM\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEA1rUf7jEwj6+nYCUxAaJfrTPujWBtZ+xSf3YGevpsZq1ceCuY\nzO7OzqC28QOlnE1NH3Togz17xzRSrRiwGnY7rWiVnlDuajfQ4CVkglHfEjGjltSU\nPaUsaPu7K416tKnl+n6I8R3AdbGKtYAGFagfiaVWGAnD2AKn2a7Pro7HFWBzVAhY\nfoZDVtA9W6a8ZR8+MUmAwc5uVjhTSq224eGPMF1PeHFwMx3qtuK85dOQHRlHxc5W\nl6MFOCm0kuPzXzLFAjYIK+xEAXde0jdxAM1gg75HVXUoZfVFls9n0FKN4bRLR4A8\nD0fogNPRIZVqbiq0zwbaNiof1h91GJAdJul5rZMSUo83m298AXg0AjQ/UWUrXotA\nVTWxCpWP1xzKSGKtpiKtMXzsd5FV2+M/5hw1pWPqNvFZanBUKMcwJqRMuAlEZnd9\n1O1sz4AdAbRqE7J8Z7m5oA55XtzhpzG3rRVquW7uiNSxW4gP1UyurGh2801wRh/m\nJdPxLA32EPHtghARCHk7j5ncFaUtVOSJJBT1xrF/3KgzVVmJ+7aAs5KqfMIpXVRC\nCu2hftXSbDYk7BxRPbZu5liqQoFqmvuelArZ0IsGNrgoamklqtj601eJIiH/4y2y\n6R21QewT2EjFS0ltf1qU2+iBYDLiJJ/AjtxROb2hPPjK/cdLF25B81tbV50CAwEA\nAQKCAgAJNzsIoUnhUPvRL6d713ld2NXLcbEgfc9Is0sx6h/PBG/spIppeXKdAd74\nV1y7acH+sKjuQSxX75IA5gdhC2QiXFPXuMeS/ZRUmqZGxbbadBD+f19hif5u/ycY\nhnkW2hgJ+XZtSwagxp8ajUU1lsLLyLH6VCj405xaxpsZdf1rmHk6ySTrQV4Qkt2f\nWnfJq16jBPGm3/JydvZ0RSKNbX4U6Fxp4gyb1RPnB7Jt9ve/l/8xqVqkJZYqw/eB\nOpGOq4IzRxhwsjJ1EaebRE/wZeBXp0oui9nRDocPIxXkpjZ60p9MkV+ClGaRaQYX\n9+7ajbC3Fic1nfdB3JXNGRp3OhxD1+TkyHHI+OENY3W86fM44mwbOuhXfEHyX8kt\n7tMyUwYqcVCzhw/G1UMmj9EPcyVIzc5HjiCXZHAFC/ggAO1jXp1kKRtBMIKUhW6j\nfwWO2gF1MtWs27FBN1f2tWyi/0ktOHymdj3tz3QzWEVAmnJFYHaULQVM0sTSjHH4\no/V4VaWET09ystbwuwFsMsbP8YzkCLapwANUv46wpsPwp95XTkUSCShbHjOJIVYV\nXU5/Z7Ww6ycCMtfskjiUVhnveeA9+xRyOlK4F0thry5YOGwdCwrrdynkd7dVUjud\nFtC/0ggY1FFuf3t44KG2WaG/SeMlx+5vZy379z3ZwFw2IbDhYQKCAQEA6of80pVk\nO7kdiMDP2EOyLpaxm2TGQp8/CiVBZ/ktcLJZMRLVBrJgvX+41mxpC+Q9M7q1+RPE\nWVrpZ7dqwwHqDmpY/WJgZM8ZbFh453RwqNVCQFHeeIASS3CZVxto7aIDk9Sf5+NY\nnS5StiF03FpD/+/eY1xzfR/K7TAcTWWM/cht5N2lMlxuYdgTxVmowIJjhHdbFm8T\n0DnwsyaYm2OdghQDD4g7l6Jja5G6dxPq7AwEyFhdFpRn1ZG2xvYaB8IkZwbwxfIL\nreThrBX2sRKly4vidRqiwbkqFp+mQ61z3LWHMVG7iNw6uPbqIXNIx4w0Jat2kZHD\nlGCG21Ei8IGMhQKCAQEA6lyWl+gSAuOJhQ1q/lNGmw1hlSng+35mGOFfjqxqjjHF\nTQ0LCHIokfMXxLFWRsOIfLbMA0U8ywl+WaGwaJUhKL2Wk+pI9pKDv+/EzfSlt3JA\n1ycre8D5hCNr0+9/luL3C/uzVQ/lH6nVLb/T7FEezzBxmgDWdlaVV1RfTuJj/0bg\n8WWmfNOw6iIXJl+9jJ3Vg/i4SyN4VQkKD8QWzAycwqSRfQXdqgbP+5HmIV2RJCho\nRHWbBI3aed8HdD8hTGDDaKr5P8Ed18k0sXy252koDUmjhfZ/6Sc6ACRDRaGRGNGO\nAqbixTXnfd6Ujtsoz3ltD25rKMIWUmvLQPKW6RM2OQKCAQAwhM2C6zD/Qf6gKfNV\ntDuKc9ZuZVy2r6ck/CwZzGzgIaVeB51Wc1ScH24nvenFcgRPTVMUIki+i5Y5xLIr\ngZvgO5QJZ261rDqANZVdnLMp2mSIVeeGWkhunu66HIuKjbfbv2MNX/UXH1wxHZ7F\nb08eBYumVpv1yLv8cbWJNXcDkZFahZgFYSXczAzbCP9mRBM+dkq7y2L38uSey19K\n1kLhhC5V6kMZzZhvyoge1loFVz8uC0nGwBDzF+AOLR+Zd0p8nez1pmtQIEeniCuu\n2kK+Z0QEIeyF0z6ny4NkAOA1SsCbLWN0nsrvNPWe0fC+h3zKRjyTROqHKaj8ej6W\nLtbZAoIBAAFvGZjKWbnczI2c3Ge7+LWgKlWwUOkZB+TlFCGaWniOQ2fKSaP+ltL1\nytJwR1fdgGtK7wqiFNIlN7myrJKnPvGx30b+av3fPaEiBXFBKvZpY44tdi2mq6As\nW0+LqpswvlQ7cQh3NW6xKlXCU7ihcm/QGxHXKXjF5NoI8SBZcEUymNPBTHh9DxsP\npFaexVkj6heJoQ8Mo4LZsE8SYxVSim8CdMVwEMAmlIU0ilTv7qBrAuBQW+d2Orz+\nKVyDul9uRCPSz/2c3+LfH0xqt+/Ii+8w4ShDrtqtW8R+dE7rwyiEt7q6bK7KOqVh\nhEUvgBts4cbzZQJ11Y8hi7fVBCle7bkCggEAJsNnHuNVPHZAW8cpx1kbDdYot7Cm\no0f4Siv5+8+d8M4Thdr/gJYbBgMtBxMlCpqH28nf8FNr+VPKhr5mSADxfMn7gVAT\nK8iRqh1SoXV707yaK+VBXQAxuOU+Y0Gkxkmd33tGP+PbOMpIhwS25hGpqQ+OKIAe\nLPD7hZ4GIHDugsMOtGLoTQQX1oU5e5T4ca9K7Sbl+4nhHm9QrZ9m7Z6gJlsdLV79\nrQpLgdn/Bt3mBSLLmn3nSC8O4rCndL6VlwEbwgUHjJnkJ5bzOjSV2Z/yeRdujaPv\n0jzsd4J+AIEXwebtNR9suTJaVIwNQ6QT4yM/00YGoItii1JBEv8bHSCu4w==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-17T11:04:28.976 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-17T11:04:29.643 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:29 smithi007 ceph-mon[25669]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:29.643 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:29 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:30.207 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-17T11:04:30.207 INFO:teuthology.orchestra.run.smithi007.stdout:Creating initial admin user... 2024-09-17T11:04:30.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:30 smithi007 ceph-mon[25669]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:30.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:30 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:31.659 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$HmGEFEGuT3taae3eY5FSceruripJwoNCAMNhHSXx8b7m32l/yrXE6", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726571071, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-17T11:04:31.659 INFO:teuthology.orchestra.run.smithi007.stdout:Fetching dashboard port number... 2024-09-17T11:04:32.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:32 smithi007 ceph-mon[25669]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:32.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:32 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:32.853 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stdout 8443 2024-09-17T11:04:32.865 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-17T11:04:32.865 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout disabled 2024-09-17T11:04:32.873 INFO:teuthology.orchestra.run.smithi007.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-17T11:04:32.873 INFO:teuthology.orchestra.run.smithi007.stdout:systemctl: stdout inactive 2024-09-17T11:04:32.873 INFO:teuthology.orchestra.run.smithi007.stdout:firewalld.service is not enabled 2024-09-17T11:04:32.873 INFO:teuthology.orchestra.run.smithi007.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-17T11:04:32.875 INFO:teuthology.orchestra.run.smithi007.stdout:Ceph Dashboard is now available at: 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout: URL: https://smithi007.front.sepia.ceph.com:8443/ 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout: User: admin 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout: Password: yr4bof74xw 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:32.876 INFO:teuthology.orchestra.run.smithi007.stdout:Saving cluster configuration to /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config directory 2024-09-17T11:04:33.191 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:33 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1858147778' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-17T11:04:34.184 INFO:teuthology.orchestra.run.smithi007.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout:Or, if you are only running a single cluster on this host: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.185 INFO:teuthology.orchestra.run.smithi007.stdout: ceph telemetry on 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout:For more information see: 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:34.186 INFO:teuthology.orchestra.run.smithi007.stdout:Bootstrap complete. 2024-09-17T11:04:34.227 INFO:tasks.cephadm:Fetching config... 2024-09-17T11:04:34.228 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:04:34.228 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-17T11:04:34.244 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-17T11:04:34.245 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:04:34.245 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-17T11:04:34.301 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-17T11:04:34.301 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:04:34.301 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/keyring of=/dev/stdout 2024-09-17T11:04:34.367 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-17T11:04:34.367 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:04:34.367 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-17T11:04:34.423 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-17T11:04:34.423 DEBUG:teuthology.orchestra.run.smithi007:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUJertWoujiUOHmw0ad1ca4acx/w9khgQ5Rc5g9rLniGdjP8ol+jMMUapt81hbh795MvcNQONK7ImkXoeawwDo+Ga/YstR/d2LmiNGoBnw03g2pAFVrBQOCATaltANwaIs6ZyORwF+iFBsrt3luRXFtbQgwJsQt2zi9qnGZU9+7iuE0tn9bT7NQcN7XFiK2SsmrDXjIcww3/hGAMdP/O5R9fCz5dqwYbj1vjdzNUuw0HF7lUFp1IISnwz+82rjRliEJGCfPLm2PJ5f5lRPEPcU6yVfnQ23N591L7FppgNsJFlaIG3FNDPYVK9GdEOtcQQff4xFIX5OHCG3aGztoY8+gwW6u4tDqzYa1MADqCxZB7OXYdeMtgzymSLdiHHGCqWohz5SJM6JqBqNt/61BEqekinqQjz/tjgq4J8QtHFMFuIA/9v42VtQmdjxv6TCnj+hjLWsqxi1p4AiCRWNNRTC14MsU+J4jwUrgyCFHVHxUrO9VPH39QKUflWHm3SlVf0= ceph-3df3defa-74e4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T11:04:34.501 INFO:teuthology.orchestra.run.smithi007.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUJertWoujiUOHmw0ad1ca4acx/w9khgQ5Rc5g9rLniGdjP8ol+jMMUapt81hbh795MvcNQONK7ImkXoeawwDo+Ga/YstR/d2LmiNGoBnw03g2pAFVrBQOCATaltANwaIs6ZyORwF+iFBsrt3luRXFtbQgwJsQt2zi9qnGZU9+7iuE0tn9bT7NQcN7XFiK2SsmrDXjIcww3/hGAMdP/O5R9fCz5dqwYbj1vjdzNUuw0HF7lUFp1IISnwz+82rjRliEJGCfPLm2PJ5f5lRPEPcU6yVfnQ23N591L7FppgNsJFlaIG3FNDPYVK9GdEOtcQQff4xFIX5OHCG3aGztoY8+gwW6u4tDqzYa1MADqCxZB7OXYdeMtgzymSLdiHHGCqWohz5SJM6JqBqNt/61BEqekinqQjz/tjgq4J8QtHFMFuIA/9v42VtQmdjxv6TCnj+hjLWsqxi1p4AiCRWNNRTC14MsU+J4jwUrgyCFHVHxUrO9VPH39QKUflWHm3SlVf0= ceph-3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:34.514 DEBUG:teuthology.orchestra.run.smithi145:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUJertWoujiUOHmw0ad1ca4acx/w9khgQ5Rc5g9rLniGdjP8ol+jMMUapt81hbh795MvcNQONK7ImkXoeawwDo+Ga/YstR/d2LmiNGoBnw03g2pAFVrBQOCATaltANwaIs6ZyORwF+iFBsrt3luRXFtbQgwJsQt2zi9qnGZU9+7iuE0tn9bT7NQcN7XFiK2SsmrDXjIcww3/hGAMdP/O5R9fCz5dqwYbj1vjdzNUuw0HF7lUFp1IISnwz+82rjRliEJGCfPLm2PJ5f5lRPEPcU6yVfnQ23N591L7FppgNsJFlaIG3FNDPYVK9GdEOtcQQff4xFIX5OHCG3aGztoY8+gwW6u4tDqzYa1MADqCxZB7OXYdeMtgzymSLdiHHGCqWohz5SJM6JqBqNt/61BEqekinqQjz/tjgq4J8QtHFMFuIA/9v42VtQmdjxv6TCnj+hjLWsqxi1p4AiCRWNNRTC14MsU+J4jwUrgyCFHVHxUrO9VPH39QKUflWHm3SlVf0= ceph-3df3defa-74e4-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-17T11:04:34.568 INFO:teuthology.orchestra.run.smithi145.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDUJertWoujiUOHmw0ad1ca4acx/w9khgQ5Rc5g9rLniGdjP8ol+jMMUapt81hbh795MvcNQONK7ImkXoeawwDo+Ga/YstR/d2LmiNGoBnw03g2pAFVrBQOCATaltANwaIs6ZyORwF+iFBsrt3luRXFtbQgwJsQt2zi9qnGZU9+7iuE0tn9bT7NQcN7XFiK2SsmrDXjIcww3/hGAMdP/O5R9fCz5dqwYbj1vjdzNUuw0HF7lUFp1IISnwz+82rjRliEJGCfPLm2PJ5f5lRPEPcU6yVfnQ23N591L7FppgNsJFlaIG3FNDPYVK9GdEOtcQQff4xFIX5OHCG3aGztoY8+gwW6u4tDqzYa1MADqCxZB7OXYdeMtgzymSLdiHHGCqWohz5SJM6JqBqNt/61BEqekinqQjz/tjgq4J8QtHFMFuIA/9v42VtQmdjxv6TCnj+hjLWsqxi1p4AiCRWNNRTC14MsU+J4jwUrgyCFHVHxUrO9VPH39QKUflWHm3SlVf0= ceph-3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:04:34.581 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-17T11:04:34.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:34 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1992883619' entity='client.admin' 2024-09-17T11:04:34.837 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:04:36.214 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-17T11:04:36.215 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-17T11:04:36.847 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:36 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3603974461' entity='client.admin' 2024-09-17T11:04:36.847 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:36 smithi007 ceph-mon[25669]: mgrmap e14: smithi007.jghsql(active, since 12s) 2024-09-17T11:04:37.215 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd/host:smithi007", "name": "osd_memory_target"} : dispatch 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi007", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi007", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:04:38.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:37 smithi007 ceph-mon[25669]: Deploying daemon ceph-exporter.smithi007 on smithi007 2024-09-17T11:04:38.676 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi145 2024-09-17T11:04:38.676 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:04:38.676 DEBUG:teuthology.orchestra.run.smithi145:> dd of=/etc/ceph/ceph.conf 2024-09-17T11:04:38.698 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:04:38.698 DEBUG:teuthology.orchestra.run.smithi145:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:04:38.757 INFO:tasks.cephadm:Adding host smithi145 to orchestrator... 2024-09-17T11:04:38.757 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch host add smithi145 2024-09-17T11:04:39.077 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:38 smithi007 ceph-mon[25669]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:39.077 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:38 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:39.152 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:04:40.769 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:40 smithi007 ceph-mon[25669]: from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi145", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:42.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:41 smithi007 ceph-mon[25669]: Deploying cephadm binary to smithi145 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:04:43.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:42 smithi007 ceph-mon[25669]: Deploying daemon crash.smithi007 on smithi007 2024-09-17T11:04:43.682 INFO:teuthology.orchestra.run.smithi007.stdout:Added host 'smithi145' with addr '172.21.15.145' 2024-09-17T11:04:44.260 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:44 smithi007 ceph-mon[25669]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:44.260 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:44 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:44.260 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:44 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:44.289 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-17T11:04:44.869 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:04:45.531 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:45 smithi007 ceph-mon[25669]: Added host smithi145 2024-09-17T11:04:45.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:45 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:45.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:45 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:45.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:45 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:45.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:45 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:45.583 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:04:45.584 INFO:teuthology.orchestra.run.smithi007.stdout:[{"addr": "172.21.15.7", "hostname": "smithi007", "labels": [], "status": ""}, {"addr": "172.21.15.145", "hostname": "smithi145", "labels": [], "status": ""}] 2024-09-17T11:04:46.212 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:46 smithi007 ceph-mon[25669]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:46.212 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:46 smithi007 ceph-mon[25669]: Deploying daemon node-exporter.smithi007 on smithi007 2024-09-17T11:04:46.240 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-17T11:04:46.240 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-17T11:04:46.506 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:04:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:47 smithi007 ceph-mon[25669]: from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:04:48.170 INFO:teuthology.orchestra.run.smithi007.stderr:adjusted tunables profile to default 2024-09-17T11:04:48.503 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:48 smithi007 ceph-mon[25669]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:48.503 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:48 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1160674712' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-17T11:04:48.503 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:48 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:49.188 INFO:tasks.cephadm:Adding mon.smithi007 on smithi007 2024-09-17T11:04:49.188 INFO:tasks.cephadm:Adding mon.smithi145 on smithi145 2024-09-17T11:04:49.189 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch apply mon '2;smithi007:172.21.15.7=smithi007;smithi145:172.21.15.145=smithi145' 2024-09-17T11:04:49.408 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:49 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1160674712' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-17T11:04:49.408 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:49 smithi007 ceph-mon[25669]: osdmap e4: 0 total, 0 up, 0 in 2024-09-17T11:04:49.481 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:49.525 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:50.116 INFO:teuthology.orchestra.run.smithi145.stdout:Scheduled mon update... 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:50.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:50 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:50.591 DEBUG:teuthology.orchestra.run.smithi145:mon.smithi145> sudo journalctl -f -n 0 -u ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi145.service 2024-09-17T11:04:50.593 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:04:50.594 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:04:50.863 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:50.932 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:51.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:51 smithi007 ceph-mon[25669]: Deploying daemon alertmanager.smithi007 on smithi007 2024-09-17T11:04:51.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:51 smithi007 ceph-mon[25669]: from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi007:172.21.15.7=smithi007;smithi145:172.21.15.145=smithi145", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:04:51.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:51 smithi007 ceph-mon[25669]: Saving service mon spec with placement smithi007:172.21.15.7=smithi007;smithi145:172.21.15.145=smithi145;count:2 2024-09-17T11:04:51.625 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:04:51.625 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:04:51.625 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:04:52.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:52 smithi007 ceph-mon[25669]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:52.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:52 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3801412565' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:04:53.190 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:04:53.190 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:04:53.434 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:53.477 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:54.293 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:04:54.293 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:04:54.293 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:04:54.468 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:54 smithi007 ceph-mon[25669]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:54.468 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:54 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:55.482 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:55 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3141955707' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:04:55.895 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:04:55.895 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:04:56.138 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:56.181 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:56 smithi007 ceph-mon[25669]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:56.807 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:04:56.807 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:04:56.807 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:04:57.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:57 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3832573805' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:04:58.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:58 smithi007 ceph-mon[25669]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:04:58.367 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:04:58.367 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:04:58.624 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:58.667 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:04:59.325 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:04:59.325 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:04:59.325 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:04:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:59 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:59 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:59 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:59 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:04:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:04:59 smithi007 ceph-mon[25669]: Regenerating cephadm self-signed grafana TLS certificates 2024-09-17T11:05:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-17T11:05:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-17T11:05:00.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:00.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:00.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:00.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: Deploying daemon grafana.smithi007 on smithi007 2024-09-17T11:05:00.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:00 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/701754663' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:00.888 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:00.889 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:01.129 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:01.172 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:01.870 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:01.870 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:01.870 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:02.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:02 smithi007 ceph-mon[25669]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:02.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:02 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3523652059' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:03.436 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:03.436 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:03.677 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:03.720 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:04.379 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:04.379 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:04.379 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:04.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:04 smithi007 ceph-mon[25669]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:04.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:04 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:05.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/4203903663' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:05.899 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:05.900 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:06.135 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:06.178 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:06.489 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:06 smithi007 ceph-mon[25669]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:06.870 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:06.870 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:06.870 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:07.453 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:07 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/1013784897' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:08.281 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:08 smithi007 ceph-mon[25669]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:08.415 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:08.416 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:08.659 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:08.703 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:09.357 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:09.357 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:09.357 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/2667980021' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.276 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.277 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:10 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:10.926 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:10.927 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:11.168 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:11.210 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:11 smithi007 ceph-mon[25669]: Deploying daemon prometheus.smithi007 on smithi007 2024-09-17T11:05:11.857 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:11.858 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:11.858 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:12.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:12 smithi007 ceph-mon[25669]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:12.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:12 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/735585700' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:13.525 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:13.526 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:13.768 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:13.812 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:14.441 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:14.441 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:14.441 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:14.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:14 smithi007 ceph-mon[25669]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:14.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:14 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:15.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:15 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/1844274792' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:15.981 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:15.981 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:16.215 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:16.274 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:16.404 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:16 smithi007 ceph-mon[25669]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:16.920 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:16.920 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:16.921 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:17.444 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:17 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3891182037' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:18.493 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:18.493 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:18.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:18 smithi007 ceph-mon[25669]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:18.737 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:18.781 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:19.419 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:19.420 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:19.420 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:20 smithi007 ceph-mon[25669]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:20.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:20 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3163699836' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:20.991 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:20.991 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:21.234 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:21.277 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:21.910 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:21.910 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:21.910 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:22.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:22 smithi007 ceph-mon[25669]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:22.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:22 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3835508857' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:23.438 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:23.438 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:23.683 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:23.726 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-17T11:05:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:24 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:24.362 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:24.363 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:24.363 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:25.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:25 smithi007 ceph-mon[25669]: from='mgr.14164 172.21.15.7:0/1084727240' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-17T11:05:25.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:25 smithi007 ceph-mon[25669]: mgrmap e15: smithi007.jghsql(active, since 61s) 2024-09-17T11:05:25.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:25 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3848398496' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:26.002 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:26.002 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:26.246 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:26.289 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:26.921 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:26.922 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:26.922 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:27.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:26 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/356044659' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:28.453 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:28.454 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:28.694 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:28.737 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:29.411 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:29.412 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:29.412 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: Active manager daemon smithi007.jghsql restarted 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: Activating manager daemon smithi007.jghsql 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: mgrmap e16: smithi007.jghsql(active, starting, since 0.00334748s) 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi007.jghsql", "id": "smithi007.jghsql"} : dispatch 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mds metadata"} : dispatch 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata"} : dispatch 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata"} : dispatch 2024-09-17T11:05:29.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:29 smithi007 ceph-mon[25669]: Manager daemon smithi007.jghsql is now available 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3765307346' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/mirror_snapshot_schedule"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi007.jghsql/trash_purge_schedule"} : dispatch 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:30.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:30 smithi007 ceph-mon[25669]: mgrmap e17: smithi007.jghsql(active, since 1.00587s) 2024-09-17T11:05:31.032 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:31.033 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:31.273 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:31.322 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: [17/Sep/2024:11:05:30] ENGINE Bus STARTING 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: [17/Sep/2024:11:05:30] ENGINE Serving on https://172.21.15.7:7150 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: [17/Sep/2024:11:05:30] ENGINE Error in HTTPServer.serve 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: Traceback (most recent call last): 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-17T11:05:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._connections.run(self.expiration_interval) 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._run(expiration_interval) 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: s = self.context.wrap_socket( 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: return self.sslsocket_class._create( 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self.do_handshake() 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-17T11:05:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: self._sslobj.do_handshake() 2024-09-17T11:05:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-17T11:05:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: [17/Sep/2024:11:05:31] ENGINE Serving on http://172.21.15.7:8765 2024-09-17T11:05:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: [17/Sep/2024:11:05:31] ENGINE Bus STARTED 2024-09-17T11:05:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:32.212 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:32.212 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:32.213 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:33.331 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:33 smithi007 ceph-mon[25669]: mgrmap e18: smithi007.jghsql(active, since 2s) 2024-09-17T11:05:33.331 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:33 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3113868069' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:34.798 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:34.798 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd/host:smithi007", "name": "osd_memory_target"} : dispatch 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:35.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd/host:smithi145", "name": "osd_memory_target"} : dispatch 2024-09-17T11:05:35.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:35.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:05:35.039 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:35.842 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:35.842 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:35.842 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi007:/etc/ceph/ceph.conf 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi145:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi007:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi145:/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:05:36.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: Updating smithi007:/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi145", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi145", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-17T11:05:36.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:37.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:36 smithi007 ceph-mon[25669]: Updating smithi145:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T11:05:37.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:36 smithi007 ceph-mon[25669]: Updating smithi007:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-17T11:05:37.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:36 smithi007 ceph-mon[25669]: Deploying daemon ceph-exporter.smithi145 on smithi145 2024-09-17T11:05:37.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:36 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/4176930218' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:37.719 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:37.719 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:37.965 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:38.793 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:38.793 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:38.793 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:39.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:38 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/2543488308' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi145", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi145", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-17T11:05:40.520 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:40.521 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: Deploying daemon crash.smithi145 on smithi145 2024-09-17T11:05:40.521 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:40.612 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:40.612 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:41.013 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:41.730 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:41.730 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:41.731 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:42.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/2266913072' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:43.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:43.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:43.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:43.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:43.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:42 smithi007 ceph-mon[25669]: Deploying daemon node-exporter.smithi145 on smithi145 2024-09-17T11:05:43.408 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:43.409 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:43.655 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:44.520 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:44.521 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:44.521 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:45.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:44 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/913405514' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:45 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:45 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:05:46.528 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:46.528 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:47.107 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:05:47.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T11:05:47.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:05:47.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:47.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:47 smithi007 ceph-mon[25669]: Deploying daemon mgr.smithi145.vgzgry on smithi145 2024-09-17T11:05:48.307 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:48.307 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:48.308 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:48.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:48 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3407349373' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:49.959 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:49.960 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:50.224 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:50.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:05:50.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:50.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: Deploying daemon mon.smithi145 on smithi145 2024-09-17T11:05:50.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:51.857 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:51.857 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":1,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:03:13.093571Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-17T11:05:51.857 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 1 2024-09-17T11:05:52.302 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:52 smithi145 systemd[1]: Starting Ceph mon.smithi145 for 3df3defa-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:05:52.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:52 smithi007 ceph-mon[25669]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:52.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:52 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3567787939' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:53.088 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:52 smithi145 podman[33826]: 2024-09-17 11:05:52.721336061 +0000 UTC m=+0.015757652 image pull 6c1fcab85602ba9d6ddde3c89adee6ee0382b7527a8ed3ee372c969068775c76 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb 2024-09-17T11:05:53.088 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:52 smithi145 podman[33826]: 2024-09-17 11:05:52.835238905 +0000 UTC m=+0.129660480 container create 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145, RELEASE=main-7498493, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965) 2024-09-17T11:05:53.088 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 podman[33826]: 2024-09-17 11:05:53.087766941 +0000 UTC m=+0.382188528 container init 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145, RELEASE=main-7498493, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-17T11:05:53.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 podman[33826]: 2024-09-17 11:05:53.092176069 +0000 UTC m=+0.386597645 container start 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, ceph=True, RELEASE=main-7498493, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-09-17T11:05:53.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: set uid:gid to 167:167 (ceph:ceph) 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: ceph version 19.3.0-4937-g74984932 (7498493279982dfe87f00616198a5967475f6169) squid (dev), process ceph-mon, pid 2 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: pidfile_write: ignore empty --pid-file 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: load: jerasure load: lrc 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: RocksDB version: 7.9.2 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Git sha 0 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Compile date 2024-09-15 20:52:36 2024-09-17T11:05:53.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: DB SUMMARY 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: DB Session ID: 5HP75KLNXXC9CFFHOJSR 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: CURRENT file: CURRENT 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: IDENTITY file: IDENTITY 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi145/store.db dir, Total Num: 0, files: 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi145/store.db: 000004.log size: 511 ; 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.error_if_exists: 0 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.create_if_missing: 0 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.paranoid_checks: 1 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-17T11:05:53.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.env: 0x5609eeac3120 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.fs: PosixFileSystem 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.info_log: 0x5609f08db8e0 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_file_opening_threads: 16 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.statistics: (nil) 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.use_fsync: 0 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_log_file_size: 0 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.keep_log_file_num: 1000 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.recycle_log_file_num: 0 2024-09-17T11:05:53.531 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_fallocate: 1 2024-09-17T11:05:53.533 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_mmap_reads: 0 2024-09-17T11:05:53.533 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_mmap_writes: 0 2024-09-17T11:05:53.533 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.use_direct_reads: 0 2024-09-17T11:05:53.533 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-17T11:05:53.533 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.create_missing_column_families: 0 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.db_log_dir: 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.wal_dir: 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.advise_random_on_open: 1 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.db_write_buffer_size: 0 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.write_buffer_manager: 0x5609f08dfb80 2024-09-17T11:05:53.534 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.rate_limiter: (nil) 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.wal_recovery_mode: 2 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enable_thread_tracking: 0 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enable_pipelined_write: 0 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.unordered_write: 0 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-17T11:05:53.535 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.row_cache: None 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.wal_filter: None 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_ingest_behind: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.two_write_queues: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.manual_wal_flush: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.wal_compression: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.atomic_flush: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.log_readahead_size: 0 2024-09-17T11:05:53.536 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.best_efforts_recovery: 0 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.allow_data_in_errors: 0 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.db_host_id: __hostname__ 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_background_jobs: 2 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_background_compactions: -1 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_subcompactions: 1 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-17T11:05:53.537 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_total_wal_size: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_open_files: -1 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bytes_per_sync: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_readahead_size: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_background_flushes: -1 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Compression algorithms supported: 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kZSTD supported: 0 2024-09-17T11:05:53.538 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kXpressCompression supported: 0 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kBZip2Compression supported: 0 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kLZ4Compression supported: 1 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kZlibCompression supported: 1 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kLZ4HCCompression supported: 1 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: kSnappyCompression supported: 1 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi145/store.db/MANIFEST-000005 2024-09-17T11:05:53.539 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.merge_operator: 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_filter: None 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_filter_factory: None 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.sst_partitioner_factory: None 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5609f08db540) 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: cache_index_and_filter_blocks: 1 2024-09-17T11:05:53.540 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: pin_top_level_index_and_filter: 1 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: index_type: 0 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: data_block_index_type: 0 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: index_shortening: 1 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: checksum: 4 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: no_block_cache: 0 2024-09-17T11:05:53.541 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_cache: 0x5609f08cf610 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_cache_name: BinnedLRUCache 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_cache_options: 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: capacity : 536870912 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: num_shard_bits : 4 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: strict_capacity_limit : 0 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: high_pri_pool_ratio: 0.000 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_cache_compressed: (nil) 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: persistent_cache: (nil) 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_size: 4096 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_size_deviation: 10 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_restart_interval: 16 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: index_block_restart_interval: 1 2024-09-17T11:05:53.542 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: metadata_block_size: 4096 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: partition_filters: 0 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: use_delta_encoding: 1 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: filter_policy: bloomfilter 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: whole_key_filtering: 1 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: verify_compression: 0 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: read_amp_bytes_per_bit: 0 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: format_version: 5 2024-09-17T11:05:53.543 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: enable_index_compression: 1 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: block_align: 0 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: max_auto_readahead_size: 262144 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: prepopulate_block_cache: 0 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: initial_auto_readahead_size: 8192 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: num_file_reads_for_auto_readahead: 2 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.write_buffer_size: 33554432 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_write_buffer_number: 2 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression: NoCompression 2024-09-17T11:05:53.544 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression: Disabled 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.prefix_extractor: nullptr 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.num_levels: 7 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-17T11:05:53.545 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.level: 32767 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.strategy: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-17T11:05:53.546 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.enabled: false 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.target_file_size_base: 67108864 2024-09-17T11:05:53.547 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-17T11:05:53.548 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.arena_block_size: 1048576 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.disable_auto_compactions: 0 2024-09-17T11:05:53.549 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-17T11:05:53.550 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.inplace_update_support: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.bloom_locality: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.max_successive_merges: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.paranoid_file_checks: 0 2024-09-17T11:05:53.551 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.force_consistency_checks: 1 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.report_bg_io_stats: 0 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.ttl: 2592000 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enable_blob_files: false 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.min_blob_size: 0 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_file_size: 268435456 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-17T11:05:53.552 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.blob_file_starting_level: 0 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi145/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 94c068e0-b054-4989-aed4-a8a6c68f9aca 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571153119096, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571153119524, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726571153, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "94c068e0-b054-4989-aed4-a8a6c68f9aca", "db_session_id": "5HP75KLNXXC9CFFHOJSR", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-17T11:05:53.553 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726571153119621, "job": 1, "event": "recovery_finished"} 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi145/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5609f08fee00 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: DB pointer 0x5609f0a00000 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: ** DB Stats ** 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-17T11:05:53.554 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: ** Compaction Stats [default] ** 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.555 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: ** Compaction Stats [default] ** 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.8 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-17T11:05:53.556 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Cumulative compaction: 0.00 GB write, 0.60 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Interval compaction: 0.00 GB write, 0.60 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Block cache BinnedLRUCache@0x5609f08cf610#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145 does not exist in monmap, will attempt to join an existing cluster 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: using public_addr v2:172.21.15.145:0/0 -> [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: starting mon.smithi145 rank -1 at public addrs [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] at bind addrs [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi145 fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(???) e0 preinit fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).mds e1 new map 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).mds e1 print_map 2024-09-17T11:05:53.557 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: e1 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: btime 2024-09-17T11:03:16:098930+0000 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: legacy client fscid: -1 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout: No filesystems configured 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-17T11:05:53.558 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: Deploying daemon node-exporter.smithi145 on smithi145 2024-09-17T11:05:53.559 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/913405514' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:05:53.560 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: Deploying daemon mgr.smithi145.vgzgry on smithi145 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3407349373' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: Deploying daemon mon.smithi145 on smithi145 2024-09-17T11:05:53.561 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:53.562 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:53.562 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3567787939' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:53.562 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 ceph-mon[33846]: mon.smithi145@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-17T11:05:53.562 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 bash[33826]: 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece 2024-09-17T11:05:53.562 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:53 smithi145 systemd[1]: Started Ceph mon.smithi145 for 3df3defa-74e4-11ef-bceb-c7b262605968. 2024-09-17T11:05:53.581 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-17T11:05:53.581 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-17T11:05:53.832 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi145/config 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: mon.smithi007 calling monitor election 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi145.vgzgry/crt"} : dispatch 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: mon.smithi145 calling monitor election 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: mon.smithi007 is new leader, mons smithi007,smithi145 in quorum (ranks 0,1) 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: monmap epoch 2 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: last_changed 2024-09-17T11:05:53.150178+0000 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: created 2024-09-17T11:03:13.093571+0000 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: min_mon_release 19 (squid) 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: election_strategy: 1 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: 0: [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon.smithi007 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: 1: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.smithi145 2024-09-17T11:05:58.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: fsmap 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: mgrmap e18: smithi007.jghsql(active, since 28s) 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: overall HEALTH_OK 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: Standby manager daemon smithi145.vgzgry started 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi145.vgzgry/key"} : dispatch 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:05:58.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: mon.smithi007 calling monitor election 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi145.vgzgry/crt"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: mon.smithi145 calling monitor election 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:05:58.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: mon.smithi007 is new leader, mons smithi007,smithi145 in quorum (ranks 0,1) 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: monmap epoch 2 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: last_changed 2024-09-17T11:05:53.150178+0000 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: created 2024-09-17T11:03:13.093571+0000 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: min_mon_release 19 (squid) 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: election_strategy: 1 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: 0: [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] mon.smithi007 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: 1: [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] mon.smithi145 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: fsmap 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: osdmap e5: 0 total, 0 up, 0 in 2024-09-17T11:05:58.535 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: mgrmap e18: smithi007.jghsql(active, since 28s) 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: overall HEALTH_OK 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: Standby manager daemon smithi145.vgzgry started 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi145.vgzgry/key"} : dispatch 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.? 172.21.15.145:0/3875736982' entity='mgr.smithi145.vgzgry' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:58.536 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:05:59.052 INFO:teuthology.orchestra.run.smithi145.stdout: 2024-09-17T11:05:59.053 INFO:teuthology.orchestra.run.smithi145.stdout:{"epoch":2,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","modified":"2024-09-17T11:05:53.150178Z","created":"2024-09-17T11:03:13.093571Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi007","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:3300","nonce":0},{"type":"v1","addr":"172.21.15.7:6789","nonce":0}]},"addr":"172.21.15.7:6789/0","public_addr":"172.21.15.7:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi145","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:3300","nonce":0},{"type":"v1","addr":"172.21.15.145:6789","nonce":0}]},"addr":"172.21.15.145:6789/0","public_addr":"172.21.15.145:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-17T11:05:59.053 INFO:teuthology.orchestra.run.smithi145.stderr:dumped monmap epoch 2 2024-09-17T11:05:59.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:59 smithi145 ceph-mon[33846]: mgrmap e19: smithi007.jghsql(active, since 29s), standbys: smithi145.vgzgry 2024-09-17T11:05:59.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:59 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi145.vgzgry", "id": "smithi145.vgzgry"} : dispatch 2024-09-17T11:05:59.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:59 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:59.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:59 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/302867822' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:59.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:05:59 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:59 smithi007 ceph-mon[25669]: mgrmap e19: smithi007.jghsql(active, since 29s), standbys: smithi145.vgzgry 2024-09-17T11:05:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:59 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr metadata", "who": "smithi145.vgzgry", "id": "smithi145.vgzgry"} : dispatch 2024-09-17T11:05:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:59 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:05:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:59 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/302867822' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-17T11:05:59.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:05:59 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:05:59.718 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-17T11:05:59.718 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-17T11:05:59.990 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:00.378 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:00 smithi007 ceph-mon[25669]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:00.378 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:00.378 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:00 smithi145 ceph-mon[33846]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:00.685 INFO:teuthology.orchestra.run.smithi007.stdout:# minimal ceph.conf for 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:06:00.685 INFO:teuthology.orchestra.run.smithi007.stdout:[global] 2024-09-17T11:06:00.685 INFO:teuthology.orchestra.run.smithi007.stdout: fsid = 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:06:00.685 INFO:teuthology.orchestra.run.smithi007.stdout: mon_host = [v2:172.21.15.7:3300/0,v1:172.21.15.7:6789/0] [v2:172.21.15.145:3300/0,v1:172.21.15.145:6789/0] 2024-09-17T11:06:01.381 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-17T11:06:01.382 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:06:01.382 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T11:06:01.410 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:06:01.410 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:06:01.478 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:06:01.478 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.conf 2024-09-17T11:06:01.506 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:06:01.506 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-17T11:06:01.571 DEBUG:tasks.cephadm:set 0 configs 2024-09-17T11:06:01.571 INFO:tasks.cephadm:Deploying OSDs... 2024-09-17T11:06:01.571 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:06:01.571 DEBUG:teuthology.orchestra.run.smithi007:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:06:01.588 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:06:01.588 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme4n1 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme4n1 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:04:37.508926472 +0000 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:49.345229029 +0000 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:49.345229029 +0000 2024-09-17T11:06:01.645 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:49.342229070 +0000 2024-09-17T11:06:01.646 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Updating smithi007:/etc/ceph/ceph.conf 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3696632735' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Updating smithi145:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:01.708 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Updating smithi007:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Reconfiguring mon.smithi007 (unknown last config time)... 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.709 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:01 smithi007 ceph-mon[25669]: Reconfiguring daemon mon.smithi007 on smithi007 2024-09-17T11:06:01.710 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:06:01.710 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:06:01.710 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00011367 s, 4.5 MB/s 2024-09-17T11:06:01.711 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T11:06:01.768 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme3n1 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Updating smithi007:/etc/ceph/ceph.conf 2024-09-17T11:06:01.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Updating smithi145:/etc/ceph/ceph.conf 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3696632735' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Updating smithi145:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Updating smithi007:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Reconfiguring mon.smithi007 (unknown last config time)... 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:01.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:01 smithi145 ceph-mon[33846]: Reconfiguring daemon mon.smithi007 on smithi007 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme3n1 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 1027 Links: 1 Device type: 103,6 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:04:37.499926595 +0000 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:49.200231013 +0000 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:49.200231013 +0000 2024-09-17T11:06:01.824 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:49.197231053 +0000 2024-09-17T11:06:01.825 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T11:06:01.891 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:06:01.891 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:06:01.891 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.000127637 s, 4.0 MB/s 2024-09-17T11:06:01.892 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T11:06:01.950 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme2n1 2024-09-17T11:06:02.006 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme2n1 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:04:37.489926734 +0000 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:49.063232886 +0000 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:49.063232886 +0000 2024-09-17T11:06:02.007 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:49.060232927 +0000 2024-09-17T11:06:02.007 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T11:06:02.071 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:06:02.071 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:06:02.071 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00011331 s, 4.5 MB/s 2024-09-17T11:06:02.072 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T11:06:02.129 DEBUG:teuthology.orchestra.run.smithi007:> stat /dev/nvme1n1 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout: File: /dev/nvme1n1 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Access: 2024-09-17 11:04:37.479926871 +0000 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Modify: 2024-09-17 11:01:48.912234951 +0000 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout:Change: 2024-09-17 11:01:48.912234951 +0000 2024-09-17T11:06:02.185 INFO:teuthology.orchestra.run.smithi007.stdout: Birth: 2024-09-17 11:01:48.909234992 +0000 2024-09-17T11:06:02.186 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T11:06:02.252 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records in 2024-09-17T11:06:02.252 INFO:teuthology.orchestra.run.smithi007.stderr:1+0 records out 2024-09-17T11:06:02.252 INFO:teuthology.orchestra.run.smithi007.stderr:512 bytes copied, 0.00010915 s, 4.7 MB/s 2024-09-17T11:06:02.253 DEBUG:teuthology.orchestra.run.smithi007:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T11:06:02.310 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:06:02.311 DEBUG:teuthology.orchestra.run.smithi145:> dd if=/scratch_devs of=/dev/stdout 2024-09-17T11:06:02.328 DEBUG:teuthology.misc:devs=['/dev/nvme4n1', '/dev/nvme3n1', '/dev/nvme2n1', '/dev/nvme1n1'] 2024-09-17T11:06:02.328 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/nvme4n1 2024-09-17T11:06:02.385 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/nvme4n1 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 1039 Links: 1 Device type: 103,8 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:05:33.615292029 +0000 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:50.967181370 +0000 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:50.967181370 +0000 2024-09-17T11:06:02.386 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:50.962181480 +0000 2024-09-17T11:06:02.386 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-17T11:06:02.450 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:06:02.450 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:06:02.450 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000263117 s, 1.9 MB/s 2024-09-17T11:06:02.451 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-17T11:06:02.509 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/nvme3n1 2024-09-17T11:06:02.566 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/nvme3n1 2024-09-17T11:06:02.566 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 1027 Links: 1 Device type: 103,6 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:05:33.605292248 +0000 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:50.827184449 +0000 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:50.827184449 +0000 2024-09-17T11:06:02.567 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:50.821184581 +0000 2024-09-17T11:06:02.568 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-17T11:06:02.632 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:06:02.632 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:06:02.633 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000220906 s, 2.3 MB/s 2024-09-17T11:06:02.634 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-17T11:06:02.691 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/nvme2n1 2024-09-17T11:06:02.748 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/nvme2n1 2024-09-17T11:06:02.748 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.748 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 1016 Links: 1 Device type: 103,4 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:05:33.594292490 +0000 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:50.688187505 +0000 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:50.688187505 +0000 2024-09-17T11:06:02.749 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:50.684187593 +0000 2024-09-17T11:06:02.749 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-17T11:06:02.813 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:06:02.813 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:06:02.813 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.00024509 s, 2.1 MB/s 2024-09-17T11:06:02.814 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-17T11:06:02.871 DEBUG:teuthology.orchestra.run.smithi145:> stat /dev/nvme1n1 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout: File: /dev/nvme1n1 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Device: 5h/5d Inode: 1004 Links: 1 Device type: 103,2 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Access: 2024-09-17 11:05:33.584292709 +0000 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Modify: 2024-09-17 11:01:50.536190847 +0000 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout:Change: 2024-09-17 11:01:50.536190847 +0000 2024-09-17T11:06:02.928 INFO:teuthology.orchestra.run.smithi145.stdout: Birth: 2024-09-17 11:01:50.531190957 +0000 2024-09-17T11:06:02.929 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-17T11:06:02.991 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records in 2024-09-17T11:06:02.991 INFO:teuthology.orchestra.run.smithi145.stderr:1+0 records out 2024-09-17T11:06:02.991 INFO:teuthology.orchestra.run.smithi145.stderr:512 bytes copied, 0.000248073 s, 2.1 MB/s 2024-09-17T11:06:02.993 DEBUG:teuthology.orchestra.run.smithi145:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-17T11:06:03.049 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-17T11:06:03.111 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:03.111 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:03.111 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:03.111 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi007.jghsql", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:06:03.111 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:06:03.112 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi007.jghsql", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:06:03.177 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:03.327 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi145/config 2024-09-17T11:06:03.976 INFO:teuthology.orchestra.run.smithi145.stdout:Scheduled osd.all-available-devices update... 2024-09-17T11:06:04.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:03 smithi145 ceph-mon[33846]: Reconfiguring mgr.smithi007.jghsql (unknown last config time)... 2024-09-17T11:06:04.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:03 smithi145 ceph-mon[33846]: Reconfiguring daemon mgr.smithi007.jghsql on smithi007 2024-09-17T11:06:04.137 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:03 smithi007 ceph-mon[25669]: Reconfiguring mgr.smithi007.jghsql (unknown last config time)... 2024-09-17T11:06:04.137 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:03 smithi007 ceph-mon[25669]: Reconfiguring daemon mgr.smithi007.jghsql on smithi007 2024-09-17T11:06:04.580 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-17T11:06:04.580 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:05.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:05.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='client.14268 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: Marking host: smithi007 for OSDSpec preview refresh. 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: Marking host: smithi145 for OSDSpec preview refresh. 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: Saving service osd.all-available-devices spec with placement * 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: Reconfiguring ceph-exporter.smithi007 (monmap changed)... 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi007", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:05.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:04 smithi145 ceph-mon[33846]: Reconfiguring daemon ceph-exporter.smithi007 on smithi007 2024-09-17T11:06:05.280 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='client.14268 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: Marking host: smithi007 for OSDSpec preview refresh. 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: Marking host: smithi145 for OSDSpec preview refresh. 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: Saving service osd.all-available-devices spec with placement * 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: Reconfiguring ceph-exporter.smithi007 (monmap changed)... 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi007", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:05.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:04 smithi007 ceph-mon[25669]: Reconfiguring daemon ceph-exporter.smithi007 on smithi007 2024-09-17T11:06:05.927 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:06.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:06.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:06.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:06.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: Reconfiguring crash.smithi007 (monmap changed)... 2024-09-17T11:06:06.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:06:06.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:06.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: Reconfiguring daemon crash.smithi007 on smithi007 2024-09-17T11:06:06.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2834033484' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: Reconfiguring crash.smithi007 (monmap changed)... 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi007", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: Reconfiguring daemon crash.smithi007 on smithi007 2024-09-17T11:06:06.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2834033484' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:06.589 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:07.591 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:08.530 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:08.910 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:08 smithi007 ceph-mon[25669]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:08.910 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:08 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:08.910 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:08 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:08.910 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:08 smithi007 ceph-mon[25669]: Reconfiguring alertmanager.smithi007 (dependencies changed)... 2024-09-17T11:06:08.911 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:08 smithi007 ceph-mon[25669]: Reconfiguring daemon alertmanager.smithi007 on smithi007 2024-09-17T11:06:09.023 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:08 smithi145 ceph-mon[33846]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:09.024 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:08 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:09.024 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:08 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:09.024 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:08 smithi145 ceph-mon[33846]: Reconfiguring alertmanager.smithi007 (dependencies changed)... 2024-09-17T11:06:09.024 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:08 smithi145 ceph-mon[33846]: Reconfiguring daemon alertmanager.smithi007 on smithi007 2024-09-17T11:06:09.982 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:10.697 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:10 smithi007 ceph-mon[25669]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:10.697 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:10 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1388220088' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:10.698 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:11.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:10 smithi145 ceph-mon[33846]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:11.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:10 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1388220088' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:11.700 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:12.296 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:12.701 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:12 smithi007 ceph-mon[25669]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:12.995 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:13.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:12 smithi145 ceph-mon[33846]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:13.859 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:13 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2544638720' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:14.023 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:13 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2544638720' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:14.205 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:14 smithi007 ceph-mon[25669]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:14 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:14 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:14 smithi007 ceph-mon[25669]: Reconfiguring grafana.smithi007 (dependencies changed)... 2024-09-17T11:06:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:14 smithi007 ceph-mon[25669]: Reconfiguring daemon grafana.smithi007 on smithi007 2024-09-17T11:06:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:14 smithi145 ceph-mon[33846]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:14 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:14 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:14 smithi145 ceph-mon[33846]: Reconfiguring grafana.smithi007 (dependencies changed)... 2024-09-17T11:06:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:14 smithi145 ceph-mon[33846]: Reconfiguring daemon grafana.smithi007 on smithi007 2024-09-17T11:06:15.206 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:15.845 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:16.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:16.051 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:16.812 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:16.813 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:16 smithi007 ceph-mon[25669]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:17.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:16 smithi145 ceph-mon[33846]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:17.598 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:17 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2362857347' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:17.628 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:17.826 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:17 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2362857347' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:18.629 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:18.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:18 smithi007 ceph-mon[25669]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:19.024 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:18 smithi145 ceph-mon[33846]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:19.275 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:19.998 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:20.351 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:20.351 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:20.351 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:20.351 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-09-17T11:06:20.351 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: Reconfiguring daemon prometheus.smithi007 on smithi007 2024-09-17T11:06:20.352 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:20 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1791116614' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:20.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:20.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:20.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:20.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-09-17T11:06:20.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: Reconfiguring daemon prometheus.smithi007 on smithi007 2024-09-17T11:06:20.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:20 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1791116614' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:21.664 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:22.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:22 smithi145 ceph-mon[33846]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:22.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:22 smithi007 ceph-mon[25669]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:22.665 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:22.948 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:23.622 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:24 smithi145 ceph-mon[33846]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:24 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3436646615' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:24.388 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:24 smithi007 ceph-mon[25669]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:24.388 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:24 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3436646615' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:24.914 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:25.915 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:26.175 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:26.827 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:26.827 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:26.827 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:26.828 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:26.828 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: Reconfiguring ceph-exporter.smithi145 (monmap changed)... 2024-09-17T11:06:26.828 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi145", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:06:26.828 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:26.828 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:26 smithi007 ceph-mon[25669]: Reconfiguring daemon ceph-exporter.smithi145 on smithi145 2024-09-17T11:06:26.906 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: Reconfiguring ceph-exporter.smithi145 (monmap changed)... 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi145", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:26.907 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:26 smithi145 ceph-mon[33846]: Reconfiguring daemon ceph-exporter.smithi145 on smithi145 2024-09-17T11:06:27.601 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2401588028' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: Reconfiguring crash.smithi145 (monmap changed)... 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi145", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:28.008 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:27 smithi145 ceph-mon[33846]: Reconfiguring daemon crash.smithi145 on smithi145 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2401588028' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: Reconfiguring crash.smithi145 (monmap changed)... 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi145", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:28.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:27 smithi007 ceph-mon[25669]: Reconfiguring daemon crash.smithi145 on smithi145 2024-09-17T11:06:28.602 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:28.872 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:29.143 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:29.143 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:29.143 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:29.143 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:06:29.144 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:06:29.144 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi145.vgzgry", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mgr services"} : dispatch 2024-09-17T11:06:29.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:29.550 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: Reconfiguring mgr.smithi145.vgzgry (monmap changed)... 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: Reconfiguring daemon mgr.smithi145.vgzgry on smithi145 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:06:30.138 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:06:30.139 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:30.139 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3747386873' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:30.139 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:30.152 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: Reconfiguring mgr.smithi145.vgzgry (monmap changed)... 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: Reconfiguring daemon mgr.smithi145.vgzgry on smithi145 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3747386873' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:31.087 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: Reconfiguring mon.smithi145 (monmap changed)... 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: Reconfiguring daemon mon.smithi145 on smithi145 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"} : dispatch 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"} : dispatch 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.088 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:06:31.089 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"} : dispatch 2024-09-17T11:06:31.089 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.153 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:31.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:31.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: Reconfiguring mon.smithi145 (monmap changed)... 2024-09-17T11:06:31.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: Reconfiguring daemon mon.smithi145 on smithi145 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"} : dispatch 2024-09-17T11:06:31.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:31.430 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:32.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:06:32.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi007.front.sepia.ceph.com:9093"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi007.front.sepia.ceph.com:3000"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi007.front.sepia.ceph.com:9095"}]: dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.064 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.065 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:06:32.065 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:06:32.244 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:33.080 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:32 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.080 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:32 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.080 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:32 smithi007 ceph-mon[25669]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:33.080 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:32 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.080 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:32 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1027933585' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:33.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:32 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:32 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:32 smithi145 ceph-mon[33846]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:33.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:32 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:06:33.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:32 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1027933585' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:33.647 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:34.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:33 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:33 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:33 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:33 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:34.648 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:35.144 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:35.269 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:35 smithi007 ceph-mon[25669]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:35.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:35 smithi145 ceph-mon[33846]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:35.903 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:36.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:36 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3327104444' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:36.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:36 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3327104444' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:36.600 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:37.215 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:37 smithi007 ceph-mon[25669]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:37.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:37 smithi145 ceph-mon[33846]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:37.602 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:37.883 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:38.558 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:06:38.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:06:38.710 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.710 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:06:38.710 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.710 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:38 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/374749485' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:06:38.842 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:38 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/374749485' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:39.129 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-17T11:06:40.132 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:40.592 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:40.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:40.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/2773961779' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"} : dispatch 2024-09-17T11:06:40.995 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"} : dispatch 2024-09-17T11:06:40.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"}]': finished 2024-09-17T11:06:40.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T11:06:40.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/2773961779' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"} : dispatch 2024-09-17T11:06:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"} : dispatch 2024-09-17T11:06:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "635f3b72-802b-479a-8243-1c1eb60ffc86"}]': finished 2024-09-17T11:06:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: osdmap e6: 1 total, 0 up, 1 in 2024-09-17T11:06:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:41.277 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:41.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3341980657' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:41.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4151880998' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e4693c93-d59c-4a4a-86af-03479ba4a2bf"} : dispatch 2024-09-17T11:06:41.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4151880998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e4693c93-d59c-4a4a-86af-03479ba4a2bf"}]': finished 2024-09-17T11:06:41.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T11:06:41.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:41.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:41 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:41.924 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3341980657' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:41.924 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4151880998' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e4693c93-d59c-4a4a-86af-03479ba4a2bf"} : dispatch 2024-09-17T11:06:41.925 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4151880998' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e4693c93-d59c-4a4a-86af-03479ba4a2bf"}]': finished 2024-09-17T11:06:41.925 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: osdmap e7: 2 total, 0 up, 2 in 2024-09-17T11:06:41.925 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:41.925 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:41 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:42.070 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1726571200,"num_remapped_pgs":0} 2024-09-17T11:06:42.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:42 smithi007 ceph-mon[25669]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:42.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:42 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/370464584' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:43.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:42 smithi145 ceph-mon[33846]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:43.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:42 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/370464584' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:43.072 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:43.348 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:43.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:43 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/140764213' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:44.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:43 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/140764213' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:44.033 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:44.707 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726571201,"num_remapped_pgs":0} 2024-09-17T11:06:44.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:44 smithi007 ceph-mon[25669]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:44.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:44 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3827975167' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:44.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:44 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:44 smithi145 ceph-mon[33846]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:45.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:44 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3827975167' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:45.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:44 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:06:45.707 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:45.980 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:46.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3358511255' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"} : dispatch 2024-09-17T11:06:46.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"} : dispatch 2024-09-17T11:06:46.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"}]': finished 2024-09-17T11:06:46.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T11:06:46.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:46.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:46.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:45 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:46.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3358511255' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"} : dispatch 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"} : dispatch 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "def68b34-fb47-44b0-8287-5d8cbf13b4fd"}]': finished 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: osdmap e8: 3 total, 0 up, 3 in 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:46.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:45 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:46.676 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:46.934 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:46.934 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2003087300' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f22593e7-a975-48c9-9609-c568c23ceede"} : dispatch 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2003087300' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f22593e7-a975-48c9-9609-c568c23ceede"}]': finished 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:46.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:46 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/517629000' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2003087300' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "f22593e7-a975-48c9-9609-c568c23ceede"} : dispatch 2024-09-17T11:06:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2003087300' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f22593e7-a975-48c9-9609-c568c23ceede"}]': finished 2024-09-17T11:06:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: osdmap e9: 4 total, 0 up, 4 in 2024-09-17T11:06:47.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:47.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:47.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:47.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:47.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:46 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/517629000' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:47.472 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726571206,"num_remapped_pgs":0} 2024-09-17T11:06:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:47 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/875991174' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:47 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3595883846' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:47 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/875991174' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:48.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:47 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3595883846' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:48.473 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:48.744 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:48.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:48 smithi007 ceph-mon[25669]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:49.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:48 smithi145 ceph-mon[33846]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:49.538 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:49.831 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:49 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/921879282' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:50.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:49 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/921879282' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:50.135 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1726571206,"num_remapped_pgs":0} 2024-09-17T11:06:50.995 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:50.995 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/1593804939' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"} : dispatch 2024-09-17T11:06:50.995 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"} : dispatch 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"}]': finished 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:50.996 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:51.010 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:51.010 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/1593804939' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"} : dispatch 2024-09-17T11:06:51.010 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"} : dispatch 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7036cad8-30d6-41ce-be94-88e4d511a5e5"}]': finished 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: osdmap e10: 5 total, 0 up, 5 in 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:51.011 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:51.136 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:51.405 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/917908909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1700660366' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4bf16a89-143a-4379-b067-0c595ee5dbf0"} : dispatch 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1700660366' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4bf16a89-143a-4379-b067-0c595ee5dbf0"}]': finished 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:51.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:51.946 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:51.946 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/917908909' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1700660366' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4bf16a89-143a-4379-b067-0c595ee5dbf0"} : dispatch 2024-09-17T11:06:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1700660366' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4bf16a89-143a-4379-b067-0c595ee5dbf0"}]': finished 2024-09-17T11:06:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: osdmap e11: 6 total, 0 up, 6 in 2024-09-17T11:06:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:52.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:52.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:52.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:52.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:52.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:52.161 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:52.964 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:52 smithi007 ceph-mon[25669]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:52.964 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:52 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2087552881' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:52.965 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726571211,"num_remapped_pgs":0} 2024-09-17T11:06:53.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:52 smithi145 ceph-mon[33846]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:53.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:52 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2087552881' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:53.966 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:53.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:53 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2247233538' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:54.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:53 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2247233538' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:54.241 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:54.896 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:54.897 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:54 smithi007 ceph-mon[25669]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:54.988 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:54 smithi145 ceph-mon[33846]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:55.583 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726571211,"num_remapped_pgs":0} 2024-09-17T11:06:56.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3567361712' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:56.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/2350113662' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"} : dispatch 2024-09-17T11:06:56.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"}]': finished 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:56.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3567361712' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/2350113662' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "68722ef9-c85b-4b53-bffd-754baf12594e"}]': finished 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: osdmap e12: 7 total, 0 up, 7 in 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:56.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:06:56.584 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:56.852 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:06:57.149 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/861929859' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3297220213' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12"} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3297220213' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12"}]': finished 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:06:57.150 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:06:57.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:57.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/861929859' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3297220213' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12"} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3297220213' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12"}]': finished 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: osdmap e13: 8 total, 0 up, 8 in 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:06:57.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:06:57.578 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:06:58.257 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:57 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2100881315' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:58.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:57 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2100881315' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:06:58.286 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:06:59.158 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:58 smithi145 ceph-mon[33846]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:59.158 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:58 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3978850561' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:59.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:58 smithi007 ceph-mon[25669]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:06:59.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:58 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3978850561' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-17T11:06:59.287 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:06:59.558 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:00.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:06:59 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:00.222 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:00.223 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:06:59 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:00.800 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:01.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:00 smithi145 ceph-mon[33846]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:01.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:00 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4091973271' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:01.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:00 smithi007 ceph-mon[25669]: pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:01.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:00 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4091973271' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:01.802 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:02.498 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:03.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:02 smithi145 ceph-mon[33846]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:03.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-17T11:07:03.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:03.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:02 smithi007 ceph-mon[25669]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:03.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-17T11:07:03.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:03.138 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:03.755 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:04.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:03 smithi007 ceph-mon[25669]: Deploying daemon osd.0 on smithi145 2024-09-17T11:07:04.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/917136215' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:04.167 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:03 smithi145 ceph-mon[33846]: Deploying daemon osd.0 on smithi145 2024-09-17T11:07:04.168 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/917136215' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:04.756 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:05.200 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:05.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:04 smithi007 ceph-mon[25669]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:05.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:04 smithi145 ceph-mon[33846]: pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:06.033 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:06.851 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:07.139 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:06 smithi007 ceph-mon[25669]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:07.139 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3566560734' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:07.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-17T11:07:07.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:06 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:07.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:06 smithi145 ceph-mon[33846]: pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:07.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3566560734' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:07.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-17T11:07:07.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:06 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:07.853 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:08.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:07 smithi145 ceph-mon[33846]: Deploying daemon osd.1 on smithi007 2024-09-17T11:07:08.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:07 smithi007 ceph-mon[25669]: Deploying daemon osd.1 on smithi007 2024-09-17T11:07:08.535 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:09.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:08 smithi145 ceph-mon[33846]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:09.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:08 smithi007 ceph-mon[25669]: pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:09.936 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:10.579 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:11.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: Deploying daemon osd.2 on smithi145 2024-09-17T11:07:11.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:10 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3329141110' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: Deploying daemon osd.2 on smithi145 2024-09-17T11:07:11.173 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:10 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3329141110' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:11.581 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:11.845 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:12.459 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:13.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:12 smithi145 ceph-mon[33846]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:13.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:12 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/686152977' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:13.114 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:12 smithi007 ceph-mon[25669]: pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:13.115 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:12 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/686152977' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:13.116 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:14.117 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:14.669 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:15.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:14 smithi007 ceph-mon[25669]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:14 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:15.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:14 smithi145 ceph-mon[33846]: pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:15.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:14 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:15.303 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:15.971 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3659554410' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-17T11:07:15.972 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3659554410' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-17T11:07:16.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:16.234 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:17.236 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:17.261 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: Deploying daemon osd.3 on smithi007 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:17.262 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:17.263 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: Deploying daemon osd.3 on smithi007 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: osdmap e14: 8 total, 0 up, 8 in 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:17.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:17.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:17.506 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:18.168 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:18.169 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-17T11:07:18.170 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:17 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:18.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:18.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: osdmap e15: 8 total, 0 up, 8 in 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-17T11:07:18.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:17 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:18.566 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:19.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:19.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:19.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: Deploying daemon osd.4 on smithi145 2024-09-17T11:07:19.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:19.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659] boot 2024-09-17T11:07:19.141 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T11:07:19.142 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:19.142 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:19.142 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:19.142 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:19.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:19.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:19.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:19.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:19.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:18 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2856926399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: Deploying daemon osd.4 on smithi145 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: osd.0 [v2:172.21.15.145:6800/1734382659,v1:172.21.15.145:6801/1734382659] boot 2024-09-17T11:07:19.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: osdmap e16: 8 total, 1 up, 8 in 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:19.208 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:18 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2856926399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:19.731 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":16,"num_osds":8,"num_up_osds":1,"osd_up_since":1726571237,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:20.117 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:19 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: osdmap e17: 8 total, 1 up, 8 in 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:20.143 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:19 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:20.733 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:20.995 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:21.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:20 smithi007 ceph-mon[25669]: pgmap v60: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:07:21.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:20 smithi007 ceph-mon[25669]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-17T11:07:21.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:20 smithi145 ceph-mon[33846]: pgmap v60: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:07:21.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:20 smithi145 ceph-mon[33846]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-17T11:07:21.639 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:22.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/721802628' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:07:22.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:07:22.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:22.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T11:07:22.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:21 smithi145 ceph-mon[33846]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T11:07:22.240 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: osdmap e18: 8 total, 1 up, 8 in 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/721802628' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:22.241 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:07:22.242 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-17T11:07:22.242 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:22.242 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-17T11:07:22.242 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:21 smithi007 ceph-mon[25669]: osdmap e19: 8 total, 1 up, 8 in 2024-09-17T11:07:22.358 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1726571237,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:23.172 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: pgmap v62: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:07:23.172 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.172 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:23.173 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752] boot 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:23.174 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:22 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: pgmap v62: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:23.237 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752]' entity='osd.1' 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: osd.1 [v2:172.21.15.7:6802/410372752,v1:172.21.15.7:6803/410372752] boot 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: osdmap e20: 8 total, 2 up, 8 in 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:23.238 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:23.239 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:23.239 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:23.239 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:23.239 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:23.359 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:23.860 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:23 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:23 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:23 smithi007 ceph-mon[25669]: from='osd.2 ' entity='osd.2' 2024-09-17T11:07:24.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:23 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='osd.2 ' entity='osd.2' 2024-09-17T11:07:24.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:23 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:24.952 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: pgmap v65: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013] boot 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: osdmap e21: 8 total, 3 up, 8 in 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:25.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:25.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:24 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/643487191' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:25.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:25.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:25.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: pgmap v65: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-17T11:07:25.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: osd.2 [v2:172.21.15.145:6808/4293489013,v1:172.21.15.145:6809/4293489013] boot 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: osdmap e21: 8 total, 3 up, 8 in 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:25.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-17T11:07:25.279 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:25.279 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:24 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/643487191' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:26.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: Deploying daemon osd.6 on smithi145 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: Deploying daemon osd.5 on smithi007 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: osdmap e22: 8 total, 3 up, 8 in 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:26.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:07:26.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: Deploying daemon osd.6 on smithi145 2024-09-17T11:07:26.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: Deploying daemon osd.5 on smithi007 2024-09-17T11:07:26.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: osdmap e22: 8 total, 3 up, 8 in 2024-09-17T11:07:26.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:26.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:26.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:26.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:26.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:26.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:07:26.713 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1726571243,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:27.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: pgmap v67: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:27.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T11:07:27.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T11:07:27.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:27.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:27.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:27.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:27.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:27.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:26 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: pgmap v67: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: osdmap e23: 8 total, 3 up, 8 in 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:26 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:07:27.714 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:28.071 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51529]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51529]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51529]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51529]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51551]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51551]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51551]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:07:28.196 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 sudo[51551]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42914]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42914]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42914]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42914]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42917]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42917]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42917]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-17T11:07:28.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 sudo[42917]: pam_unix(sudo:session): session closed for user root 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: pgmap v70: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:28.753 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:07:28.754 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:28 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: pgmap v70: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: osdmap e24: 8 total, 3 up, 8 in 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:28.936 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi007"} : dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "mon metadata", "id": "smithi145"} : dispatch 2024-09-17T11:07:28.937 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-17T11:07:28.938 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:28 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:28.961 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:29.782 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":25,"num_osds":8,"num_up_osds":3,"osd_up_since":1726571243,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:29.887 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T11:07:29.887 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4230645871' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:29.888 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:29 smithi145 ceph-mon[33846]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-17T11:07:29.911 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: osdmap e25: 8 total, 3 up, 8 in 2024-09-17T11:07:29.911 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:29.911 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4230645871' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:29.912 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:29 smithi007 ceph-mon[25669]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-17T11:07:30.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: pgmap v73: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:30.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:07:30.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: Cluster is now healthy 2024-09-17T11:07:30.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: mgrmap e20: smithi007.jghsql(active, since 2m), standbys: smithi145.vgzgry 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:30.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:30.783 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: pgmap v73: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: Cluster is now healthy 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: mgrmap e20: smithi007.jghsql(active, since 2m), standbys: smithi145.vgzgry 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: osdmap e26: 8 total, 3 up, 8 in 2024-09-17T11:07:30.890 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:30.891 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:31.061 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:31.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:31.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:31.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T11:07:31.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.779 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='osd.4 ' entity='osd.4' 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678] boot 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522] boot 2024-09-17T11:07:31.780 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: osdmap e28: 8 total, 5 up, 8 in 2024-09-17T11:07:31.781 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.781 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.781 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:31.781 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:31.781 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:31.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: osdmap e27: 8 total, 3 up, 8 in 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:31.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678]' entity='osd.3' 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='osd.4 ' entity='osd.4' 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: osd.3 [v2:172.21.15.7:6810/3561356678,v1:172.21.15.7:6811/3561356678] boot 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: osd.4 [v2:172.21.15.145:6816/1404955522,v1:172.21.15.145:6817/1404955522] boot 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: osdmap e28: 8 total, 5 up, 8 in 2024-09-17T11:07:31.785 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-17T11:07:31.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-17T11:07:31.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:31.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:31.786 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:31.805 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:32.408 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":28,"num_osds":8,"num_up_osds":5,"osd_up_since":1726571251,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":1} 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:32.989 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2973100090' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:32.990 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T11:07:32.990 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:32.990 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:32.990 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:32 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 90 MiB used, 268 GiB / 268 GiB avail 2024-09-17T11:07:33.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2973100090' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:33.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: osdmap e29: 8 total, 5 up, 8 in 2024-09-17T11:07:33.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:33.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:33.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:32 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:33.409 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:33.695 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:34.359 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:34.630 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: pgmap v79: 1 pgs: 1 remapped+peering; 577 KiB data, 543 MiB used, 446 GiB / 447 GiB avail; 11 KiB/s rd, 587 KiB/s wr, 37 op/s 2024-09-17T11:07:34.630 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:34.630 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:34.630 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: Deploying daemon osd.7 on smithi007 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:34.631 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:34 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2400011584' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:34.838 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: pgmap v79: 1 pgs: 1 remapped+peering; 577 KiB data, 543 MiB used, 446 GiB / 447 GiB avail; 11 KiB/s rd, 587 KiB/s wr, 37 op/s 2024-09-17T11:07:34.838 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:34.838 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:34.838 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-17T11:07:34.838 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: Deploying daemon osd.7 on smithi007 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: osdmap e30: 8 total, 5 up, 8 in 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:34.839 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:34 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2400011584' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:35.482 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":30,"num_osds":8,"num_up_osds":5,"osd_up_since":1726571251,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":1} 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:07:35.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:35 smithi007 ceph-mon[25669]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:07:36.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: osdmap e31: 8 total, 5 up, 8 in 2024-09-17T11:07:36.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:07:36.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:35 smithi145 ceph-mon[33846]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-17T11:07:36.483 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: pgmap v82: 1 pgs: 1 remapped+peering; 577 KiB data, 543 MiB used, 446 GiB / 447 GiB avail; 11 KiB/s rd, 587 KiB/s wr, 37 op/s 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:36.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:36.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:36 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:36.883 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: pgmap v82: 1 pgs: 1 remapped+peering; 577 KiB data, 543 MiB used, 446 GiB / 447 GiB avail; 11 KiB/s rd, 587 KiB/s wr, 37 op/s 2024-09-17T11:07:36.883 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-17T11:07:36.883 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: osdmap e32: 8 total, 5 up, 8 in 2024-09-17T11:07:36.884 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:36.884 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:36.884 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:36.884 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]} : dispatch 2024-09-17T11:07:36.884 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:36 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:37.280 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:37.944 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:37.945 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:37 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi145", "root=default"]}]': finished 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: osdmap e33: 8 total, 5 up, 8 in 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:37 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:38.703 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":34,"num_osds":8,"num_up_osds":6,"osd_up_since":1726571257,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:38.882 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:38.882 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:38.882 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: pgmap v85: 1 pgs: 1 remapped+peering; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T11:07:38.882 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511] boot 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1876256070' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:38.883 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:38 smithi007 ceph-mon[25669]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-17T11:07:39.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: pgmap v85: 1 pgs: 1 remapped+peering; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: osd.6 [v2:172.21.15.145:6824/2929451511,v1:172.21.15.145:6825/2929451511] boot 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: osdmap e34: 8 total, 6 up, 8 in 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1876256070' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:39.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:38 smithi145 ceph-mon[33846]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-17T11:07:39.705 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:39.971 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:40.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:39 smithi145 ceph-mon[33846]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T11:07:40.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:39 smithi145 ceph-mon[33846]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T11:07:40.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:39 smithi145 ceph-mon[33846]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:40.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:40.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:40.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:39 smithi007 ceph-mon[25669]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-17T11:07:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:39 smithi007 ceph-mon[25669]: osdmap e35: 8 total, 6 up, 8 in 2024-09-17T11:07:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:39 smithi007 ceph-mon[25669]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:40.671 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:40.951 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:07:40.952 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:40.952 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T11:07:40.952 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:40.952 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:40.952 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 175 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:07:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: from='osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: osdmap e36: 8 total, 6 up, 8 in 2024-09-17T11:07:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:41.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:41.292 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":37,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571260,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:42.001 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109] boot 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:42.002 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:41 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/283310820' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: osd.5 [v2:172.21.15.7:6818/180582109,v1:172.21.15.7:6819/180582109] boot 2024-09-17T11:07:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: osdmap e37: 8 total, 7 up, 8 in 2024-09-17T11:07:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-17T11:07:42.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:42.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:41 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/283310820' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:42.293 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:42.637 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:42.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:42 smithi007 ceph-mon[25669]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:07:42.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:42 smithi007 ceph-mon[25669]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T11:07:42.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:42.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:42.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:42 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:43.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:42 smithi145 ceph-mon[33846]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 174 MiB used, 536 GiB / 536 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-17T11:07:43.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:42 smithi145 ceph-mon[33846]: osdmap e38: 8 total, 7 up, 8 in 2024-09-17T11:07:43.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:42 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:43.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:42 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:43.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:42 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:43.323 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:43.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:43 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4076282222' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:43.933 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571260,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:44.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:43 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4076282222' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:44.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:44 smithi007 ceph-mon[25669]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:44.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:44 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:44.934 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:44 smithi145 ceph-mon[33846]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:44 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:07:45.266 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:45.870 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:46.537 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571260,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:46.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:46 smithi007 ceph-mon[25669]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:46.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:46 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/199701818' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:46 smithi145 ceph-mon[33846]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:46 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/199701818' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:47.538 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:47.807 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:48.417 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:48 smithi145 ceph-mon[33846]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:48.418 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:48 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:48.418 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:48 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:48.418 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:48 smithi145 ceph-mon[33846]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-17T11:07:48.418 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:48 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:48.485 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:48.485 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:48 smithi007 ceph-mon[25669]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:48.486 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:48 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:48.486 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:48 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:48.486 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:48 smithi007 ceph-mon[25669]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-17T11:07:48.486 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:48 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:07:49.293 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:49 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2109340614' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:49.293 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:49 smithi145 ceph-mon[33846]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T11:07:49.293 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:49 smithi145 ceph-mon[33846]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T11:07:49.293 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:49 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:49.293 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:49 smithi145 ceph-mon[33846]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:49.331 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":38,"num_osds":8,"num_up_osds":7,"osd_up_since":1726571260,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":0} 2024-09-17T11:07:49.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:49 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2109340614' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:49.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:49 smithi007 ceph-mon[25669]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-17T11:07:49.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:49 smithi007 ceph-mon[25669]: osdmap e39: 8 total, 7 up, 8 in 2024-09-17T11:07:49.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:49 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:49.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:49 smithi007 ceph-mon[25669]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]} : dispatch 2024-09-17T11:07:50.332 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-17T11:07:50.602 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:50.700 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: purged_snaps scrub starts 2024-09-17T11:07:50.700 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: purged_snaps scrub ok 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335] boot 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T11:07:50.701 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: purged_snaps scrub starts 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: purged_snaps scrub ok 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 201 MiB used, 626 GiB / 626 GiB avail 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi007", "root=default"]}]': finished 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: osdmap e40: 8 total, 7 up, 8 in 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:50.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335]' entity='osd.7' 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: osd.7 [v2:172.21.15.7:6826/606497335,v1:172.21.15.7:6827/606497335] boot 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: osdmap e41: 8 total, 8 up, 8 in 2024-09-17T11:07:50.936 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-17T11:07:51.500 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:51.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:51 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/628751917' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:51.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:51 smithi007 ceph-mon[25669]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T11:07:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:51 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/628751917' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-17T11:07:52.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:51 smithi145 ceph-mon[33846]: osdmap e42: 8 total, 8 up, 8 in 2024-09-17T11:07:52.338 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":41,"num_osds":8,"num_up_osds":8,"osd_up_since":1726571270,"num_in_osds":8,"osd_in_since":1726571216,"num_remapped_pgs":1} 2024-09-17T11:07:52.339 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:07:52.934 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:52 smithi145 ceph-mon[33846]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 399 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:52.934 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:52 smithi145 ceph-mon[33846]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T11:07:53.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:52 smithi007 ceph-mon[25669]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 399 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:53.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:52 smithi007 ceph-mon[25669]: osdmap e43: 8 total, 8 up, 8 in 2024-09-17T11:07:53.113 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:54.467 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:07:54.468 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":44,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:03:16.099079+0000","modified":"2024-09-17T11:07:53.522987+0000","last_up_change":"2024-09-17T11:07:50.518659+0000","last_in_change":"2024-09-17T11:06:56.811989+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:07:25.672028+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":"25","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"635f3b72-802b-479a-8243-1c1eb60ffc86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6800","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6801","nonce":1734382659}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6803","nonce":1734382659}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6807","nonce":1734382659}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6805","nonce":1734382659}]},"public_addr":"172.21.15.145:6801/1734382659","cluster_addr":"172.21.15.145:6803/1734382659","heartbeat_back_addr":"172.21.15.145:6807/1734382659","heartbeat_front_addr":"172.21.15.145:6805/1734382659","state":["exists","up"]},{"osd":1,"uuid":"e4693c93-d59c-4a4a-86af-03479ba4a2bf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6803","nonce":410372752}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6805","nonce":410372752}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6809","nonce":410372752}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6807","nonce":410372752}]},"public_addr":"172.21.15.7:6803/410372752","cluster_addr":"172.21.15.7:6805/410372752","heartbeat_back_addr":"172.21.15.7:6809/410372752","heartbeat_front_addr":"172.21.15.7:6807/410372752","state":["exists","up"]},{"osd":2,"uuid":"def68b34-fb47-44b0-8287-5d8cbf13b4fd","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":"172.21.15.145:6808","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6809","nonce":4293489013}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6811","nonce":4293489013}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6815","nonce":4293489013}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6813","nonce":4293489013}]},"public_addr":"172.21.15.145:6809/4293489013","cluster_addr":"172.21.15.145:6811/4293489013","heartbeat_back_addr":"172.21.15.145:6815/4293489013","heartbeat_front_addr":"172.21.15.145:6813/4293489013","state":["exists","up"]},{"osd":3,"uuid":"f22593e7-a975-48c9-9609-c568c23ceede","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6810","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6811","nonce":3561356678}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6813","nonce":3561356678}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6817","nonce":3561356678}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6815","nonce":3561356678}]},"public_addr":"172.21.15.7:6811/3561356678","cluster_addr":"172.21.15.7:6813/3561356678","heartbeat_back_addr":"172.21.15.7:6817/3561356678","heartbeat_front_addr":"172.21.15.7:6815/3561356678","state":["exists","up"]},{"osd":4,"uuid":"7036cad8-30d6-41ce-be94-88e4d511a5e5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6816","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6817","nonce":1404955522}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6818","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6819","nonce":1404955522}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6822","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6823","nonce":1404955522}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6820","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6821","nonce":1404955522}]},"public_addr":"172.21.15.145:6817/1404955522","cluster_addr":"172.21.15.145:6819/1404955522","heartbeat_back_addr":"172.21.15.145:6823/1404955522","heartbeat_front_addr":"172.21.15.145:6821/1404955522","state":["exists","up"]},{"osd":5,"uuid":"4bf16a89-143a-4379-b067-0c595ee5dbf0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6819","nonce":180582109}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6821","nonce":180582109}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6825","nonce":180582109}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6823","nonce":180582109}]},"public_addr":"172.21.15.7:6819/180582109","cluster_addr":"172.21.15.7:6821/180582109","heartbeat_back_addr":"172.21.15.7:6825/180582109","heartbeat_front_addr":"172.21.15.7:6823/180582109","state":["exists","up"]},{"osd":6,"uuid":"68722ef9-c85b-4b53-bffd-754baf12594e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6824","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6825","nonce":2929451511}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6826","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6827","nonce":2929451511}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6830","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6831","nonce":2929451511}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6828","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6829","nonce":2929451511}]},"public_addr":"172.21.15.145:6825/2929451511","cluster_addr":"172.21.15.145:6827/2929451511","heartbeat_back_addr":"172.21.15.145:6831/2929451511","heartbeat_front_addr":"172.21.15.145:6829/2929451511","state":["exists","up"]},{"osd":7,"uuid":"cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6827","nonce":606497335}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6829","nonce":606497335}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6833","nonce":606497335}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6831","nonce":606497335}]},"public_addr":"172.21.15.7:6827/606497335","cluster_addr":"172.21.15.7:6829/606497335","heartbeat_back_addr":"172.21.15.7:6833/606497335","heartbeat_front_addr":"172.21.15.7:6831/606497335","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:16.007333+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:21.377935+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:22.776051+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:30.310457+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:29.952965+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:39.356499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:36.612192+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:48.688210+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/2206682083":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6801/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6801/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6800/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/2828186039":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/3364916451":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6800/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/211358455":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/1040405779":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/2667422691":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/3385565515":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/2568500437":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6800/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6801/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/1825898646":"2024-09-18T11:04:22.733598+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 400 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: Detected new or changed devices on smithi145 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:54.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: Adjusting osd_memory_target on smithi145 to 3728M 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:54.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:54 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/601445962' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:07:55.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 400 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:55.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: osdmap e44: 8 total, 8 up, 8 in 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: Detected new or changed devices on smithi145 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: Adjusting osd_memory_target on smithi145 to 3728M 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:07:55.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:54 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/601445962' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:07:55.137 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-17T11:07:25.672028+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': '25', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-17T11:07:55.137 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-17T11:07:55.686 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:55 smithi007 ceph-mon[25669]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T11:07:56.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:55 smithi145 ceph-mon[33846]: osdmap e45: 8 total, 8 up, 8 in 2024-09-17T11:07:56.304 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:56.554 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:56 smithi007 ceph-mon[25669]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 400 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:57.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:56 smithi145 ceph-mon[33846]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 400 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:57.134 INFO:teuthology.orchestra.run.smithi007.stdout:pg_num: 1 2024-09-17T11:07:57.750 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:57 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4050691015' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-17T11:07:57.780 INFO:tasks.cephadm:Setting up client nodes... 2024-09-17T11:07:57.781 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T11:07:58.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:57 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4050691015' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-17T11:07:58.052 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:07:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:58 smithi007 ceph-mon[25669]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:58.820 INFO:teuthology.orchestra.run.smithi007.stdout:[client.0] 2024-09-17T11:07:58.820 INFO:teuthology.orchestra.run.smithi007.stdout: key = AQAOY+lm/dLFMBAATyVdGFJJMuwgdPBlcyLlNg== 2024-09-17T11:07:59.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:58 smithi145 ceph-mon[33846]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:07:59.575 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:07:59.575 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-17T11:07:59.575 DEBUG:teuthology.orchestra.run.smithi007:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-17T11:07:59.617 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-17T11:07:59.879 INFO:teuthology.orchestra.run.smithi145.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi145/config 2024-09-17T11:07:59.999 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:59 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3048428201' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:00.000 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:07:59 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3048428201' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:08:00.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:59 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3048428201' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:00.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:07:59 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3048428201' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:08:00.597 INFO:teuthology.orchestra.run.smithi145.stdout:[client.1] 2024-09-17T11:08:00.597 INFO:teuthology.orchestra.run.smithi145.stdout: key = AQAQY+lmVq9XIxAA1U7tRZf6ZtKgUrCuf3ar7Q== 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: Detected new or changed devices on smithi007 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.598 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:08:00.599 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: Detected new or changed devices on smithi007 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-17T11:08:00.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-17T11:08:00.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:01.232 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:08:01.232 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-17T11:08:01.232 DEBUG:teuthology.orchestra.run.smithi145:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-17T11:08:01.271 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph config log 1 --format=json 2024-09-17T11:08:01.572 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:01.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:01 smithi007 ceph-mon[25669]: Adjusting osd_memory_target on smithi007 to 2961M 2024-09-17T11:08:01.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:01 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/229221933' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:01.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:01 smithi007 ceph-mon[25669]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:01.805 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:01 smithi007 ceph-mon[25669]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:08:01.806 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:01 smithi145 ceph-mon[33846]: Adjusting osd_memory_target on smithi007 to 2961M 2024-09-17T11:08:01.806 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:01 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/229221933' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:01.807 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:01 smithi145 ceph-mon[33846]: from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-17T11:08:01.807 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:01 smithi145 ceph-mon[33846]: from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-17T11:08:02.719 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:02 smithi007 ceph-mon[25669]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:02.720 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:02.739 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:02 smithi145 ceph-mon[33846]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:03.386 INFO:teuthology.orchestra.run.smithi007.stdout:[{"version":20,"timestamp":"2024-09-17T11:08:00.101826+0000","name":"","changes":[{"name":"osd/host:smithi007/osd_memory_target","new_value":"3104924057"}]}] 2024-09-17T11:08:03.387 INFO:tasks.ceph_manager:config epoch is 20 2024-09-17T11:08:03.387 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-17T11:08:03.387 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-17T11:08:03.387 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-17T11:08:03.735 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2252747799' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-17T11:08:04.014 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2252747799' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-17T11:08:04.101 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:04.709 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:04 smithi145 ceph-mon[33846]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:04.808 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:05.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:04 smithi007 ceph-mon[25669]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:05.765 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/460581835' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-17T11:08:05.845 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":20,"flags":0,"active_gid":14227,"active_name":"smithi007.jghsql","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6800","nonce":1341926059},{"type":"v1","addr":"172.21.15.7:6801","nonce":1341926059}]},"active_addr":"172.21.15.7:6801/1341926059","active_change":"2024-09-17T11:05:29.211385+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14254,"name":"smithi145.vgzgry","mgr_features":4540719139924082687,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.7:8443/","prometheus":"http://172.21.15.7:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.7:0","nonce":638641407}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.7:0","nonce":43955317}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.7:0","nonce":1018939339}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.7:0","nonce":312902594}]}]} 2024-09-17T11:08:05.851 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-17T11:08:05.851 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-17T11:08:05.851 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:08:05.874 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/460581835' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-17T11:08:06.701 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:06.736 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:06 smithi145 ceph-mon[33846]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:06.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:06 smithi007 ceph-mon[25669]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:08.099 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:08.099 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":45,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:03:16.099079+0000","modified":"2024-09-17T11:07:54.524376+0000","last_up_change":"2024-09-17T11:07:50.518659+0000","last_in_change":"2024-09-17T11:06:56.811989+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:07:25.672028+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":"25","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"635f3b72-802b-479a-8243-1c1eb60ffc86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6800","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6801","nonce":1734382659}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6803","nonce":1734382659}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6807","nonce":1734382659}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6805","nonce":1734382659}]},"public_addr":"172.21.15.145:6801/1734382659","cluster_addr":"172.21.15.145:6803/1734382659","heartbeat_back_addr":"172.21.15.145:6807/1734382659","heartbeat_front_addr":"172.21.15.145:6805/1734382659","state":["exists","up"]},{"osd":1,"uuid":"e4693c93-d59c-4a4a-86af-03479ba4a2bf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6803","nonce":410372752}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6805","nonce":410372752}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6809","nonce":410372752}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6807","nonce":410372752}]},"public_addr":"172.21.15.7:6803/410372752","cluster_addr":"172.21.15.7:6805/410372752","heartbeat_back_addr":"172.21.15.7:6809/410372752","heartbeat_front_addr":"172.21.15.7:6807/410372752","state":["exists","up"]},{"osd":2,"uuid":"def68b34-fb47-44b0-8287-5d8cbf13b4fd","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":"172.21.15.145:6808","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6809","nonce":4293489013}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6811","nonce":4293489013}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6815","nonce":4293489013}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6813","nonce":4293489013}]},"public_addr":"172.21.15.145:6809/4293489013","cluster_addr":"172.21.15.145:6811/4293489013","heartbeat_back_addr":"172.21.15.145:6815/4293489013","heartbeat_front_addr":"172.21.15.145:6813/4293489013","state":["exists","up"]},{"osd":3,"uuid":"f22593e7-a975-48c9-9609-c568c23ceede","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6810","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6811","nonce":3561356678}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6813","nonce":3561356678}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6817","nonce":3561356678}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6815","nonce":3561356678}]},"public_addr":"172.21.15.7:6811/3561356678","cluster_addr":"172.21.15.7:6813/3561356678","heartbeat_back_addr":"172.21.15.7:6817/3561356678","heartbeat_front_addr":"172.21.15.7:6815/3561356678","state":["exists","up"]},{"osd":4,"uuid":"7036cad8-30d6-41ce-be94-88e4d511a5e5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6816","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6817","nonce":1404955522}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6818","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6819","nonce":1404955522}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6822","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6823","nonce":1404955522}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6820","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6821","nonce":1404955522}]},"public_addr":"172.21.15.145:6817/1404955522","cluster_addr":"172.21.15.145:6819/1404955522","heartbeat_back_addr":"172.21.15.145:6823/1404955522","heartbeat_front_addr":"172.21.15.145:6821/1404955522","state":["exists","up"]},{"osd":5,"uuid":"4bf16a89-143a-4379-b067-0c595ee5dbf0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6819","nonce":180582109}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6821","nonce":180582109}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6825","nonce":180582109}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6823","nonce":180582109}]},"public_addr":"172.21.15.7:6819/180582109","cluster_addr":"172.21.15.7:6821/180582109","heartbeat_back_addr":"172.21.15.7:6825/180582109","heartbeat_front_addr":"172.21.15.7:6823/180582109","state":["exists","up"]},{"osd":6,"uuid":"68722ef9-c85b-4b53-bffd-754baf12594e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6824","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6825","nonce":2929451511}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6826","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6827","nonce":2929451511}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6830","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6831","nonce":2929451511}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6828","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6829","nonce":2929451511}]},"public_addr":"172.21.15.145:6825/2929451511","cluster_addr":"172.21.15.145:6827/2929451511","heartbeat_back_addr":"172.21.15.145:6831/2929451511","heartbeat_front_addr":"172.21.15.145:6829/2929451511","state":["exists","up"]},{"osd":7,"uuid":"cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6827","nonce":606497335}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6829","nonce":606497335}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6833","nonce":606497335}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6831","nonce":606497335}]},"public_addr":"172.21.15.7:6827/606497335","cluster_addr":"172.21.15.7:6829/606497335","heartbeat_back_addr":"172.21.15.7:6833/606497335","heartbeat_front_addr":"172.21.15.7:6831/606497335","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:16.007333+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:21.377935+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:22.776051+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:30.310457+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:29.952965+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:39.356499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:36.612192+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:48.688210+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/2206682083":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6801/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6801/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6800/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/2828186039":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/3364916451":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6800/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/211358455":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/1040405779":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/2667422691":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/3385565515":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/2568500437":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6800/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6801/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/1825898646":"2024-09-18T11:04:22.733598+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T11:08:09.001 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:08 smithi007 ceph-mon[25669]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:09.001 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:08 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1474916697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:08:09.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:08 smithi145 ceph-mon[33846]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:09.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:08 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1474916697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:08:09.032 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-17T11:08:09.032 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-17T11:08:10.043 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:10.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:10 smithi007 ceph-mon[25669]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:10.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:10.905 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:10.985 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:10.985 INFO:teuthology.orchestra.run.smithi007.stdout:{"epoch":45,"fsid":"3df3defa-74e4-11ef-bceb-c7b262605968","created":"2024-09-17T11:03:16.099079+0000","modified":"2024-09-17T11:07:54.524376+0000","last_up_change":"2024-09-17T11:07:50.518659+0000","last_in_change":"2024-09-17T11:06:56.811989+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-17T11:07:25.672028+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":"25","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"635f3b72-802b-479a-8243-1c1eb60ffc86","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":43,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6800","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6801","nonce":1734382659}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6802","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6803","nonce":1734382659}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6806","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6807","nonce":1734382659}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6804","nonce":1734382659},{"type":"v1","addr":"172.21.15.145:6805","nonce":1734382659}]},"public_addr":"172.21.15.145:6801/1734382659","cluster_addr":"172.21.15.145:6803/1734382659","heartbeat_back_addr":"172.21.15.145:6807/1734382659","heartbeat_front_addr":"172.21.15.145:6805/1734382659","state":["exists","up"]},{"osd":1,"uuid":"e4693c93-d59c-4a4a-86af-03479ba4a2bf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6802","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6803","nonce":410372752}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6804","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6805","nonce":410372752}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6808","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6809","nonce":410372752}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6806","nonce":410372752},{"type":"v1","addr":"172.21.15.7:6807","nonce":410372752}]},"public_addr":"172.21.15.7:6803/410372752","cluster_addr":"172.21.15.7:6805/410372752","heartbeat_back_addr":"172.21.15.7:6809/410372752","heartbeat_front_addr":"172.21.15.7:6807/410372752","state":["exists","up"]},{"osd":2,"uuid":"def68b34-fb47-44b0-8287-5d8cbf13b4fd","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":"172.21.15.145:6808","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6809","nonce":4293489013}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6810","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6811","nonce":4293489013}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6814","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6815","nonce":4293489013}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6812","nonce":4293489013},{"type":"v1","addr":"172.21.15.145:6813","nonce":4293489013}]},"public_addr":"172.21.15.145:6809/4293489013","cluster_addr":"172.21.15.145:6811/4293489013","heartbeat_back_addr":"172.21.15.145:6815/4293489013","heartbeat_front_addr":"172.21.15.145:6813/4293489013","state":["exists","up"]},{"osd":3,"uuid":"f22593e7-a975-48c9-9609-c568c23ceede","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6810","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6811","nonce":3561356678}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6812","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6813","nonce":3561356678}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6816","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6817","nonce":3561356678}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6814","nonce":3561356678},{"type":"v1","addr":"172.21.15.7:6815","nonce":3561356678}]},"public_addr":"172.21.15.7:6811/3561356678","cluster_addr":"172.21.15.7:6813/3561356678","heartbeat_back_addr":"172.21.15.7:6817/3561356678","heartbeat_front_addr":"172.21.15.7:6815/3561356678","state":["exists","up"]},{"osd":4,"uuid":"7036cad8-30d6-41ce-be94-88e4d511a5e5","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6816","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6817","nonce":1404955522}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6818","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6819","nonce":1404955522}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6822","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6823","nonce":1404955522}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6820","nonce":1404955522},{"type":"v1","addr":"172.21.15.145:6821","nonce":1404955522}]},"public_addr":"172.21.15.145:6817/1404955522","cluster_addr":"172.21.15.145:6819/1404955522","heartbeat_back_addr":"172.21.15.145:6823/1404955522","heartbeat_front_addr":"172.21.15.145:6821/1404955522","state":["exists","up"]},{"osd":5,"uuid":"4bf16a89-143a-4379-b067-0c595ee5dbf0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6818","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6819","nonce":180582109}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6820","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6821","nonce":180582109}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6824","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6825","nonce":180582109}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6822","nonce":180582109},{"type":"v1","addr":"172.21.15.7:6823","nonce":180582109}]},"public_addr":"172.21.15.7:6819/180582109","cluster_addr":"172.21.15.7:6821/180582109","heartbeat_back_addr":"172.21.15.7:6825/180582109","heartbeat_front_addr":"172.21.15.7:6823/180582109","state":["exists","up"]},{"osd":6,"uuid":"68722ef9-c85b-4b53-bffd-754baf12594e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6824","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6825","nonce":2929451511}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6826","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6827","nonce":2929451511}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6830","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6831","nonce":2929451511}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.145:6828","nonce":2929451511},{"type":"v1","addr":"172.21.15.145:6829","nonce":2929451511}]},"public_addr":"172.21.15.145:6825/2929451511","cluster_addr":"172.21.15.145:6827/2929451511","heartbeat_back_addr":"172.21.15.145:6831/2929451511","heartbeat_front_addr":"172.21.15.145:6829/2929451511","state":["exists","up"]},{"osd":7,"uuid":"cc7f6b7f-6259-4cc0-8b07-6bebdc55dc12","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":41,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6826","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6827","nonce":606497335}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6828","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6829","nonce":606497335}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6832","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6833","nonce":606497335}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.7:6830","nonce":606497335},{"type":"v1","addr":"172.21.15.7:6831","nonce":606497335}]},"public_addr":"172.21.15.7:6827/606497335","cluster_addr":"172.21.15.7:6829/606497335","heartbeat_back_addr":"172.21.15.7:6833/606497335","heartbeat_front_addr":"172.21.15.7:6831/606497335","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:16.007333+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:21.377935+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:22.776051+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:30.310457+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:29.952965+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:39.356499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:36.612192+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-17T11:07:48.688210+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.7:0/2206682083":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6801/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6801/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:6800/2091129378":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/2828186039":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/3364916451":"2024-09-18T11:03:47.499347+0000","172.21.15.7:6800/3493051511":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/211358455":"2024-09-18T11:03:47.499347+0000","172.21.15.7:0/1040405779":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/2667422691":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/3385565515":"2024-09-18T11:05:29.211275+0000","172.21.15.7:0/2568500437":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6800/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:6801/1752281447":"2024-09-18T11:04:22.733598+0000","172.21.15.7:0/1825898646":"2024-09-18T11:04:22.733598+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-17T11:08:11.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:10 smithi145 ceph-mon[33846]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:11.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:11.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:11.747 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-17T11:08:11.748 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-17T11:08:11.748 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-17T11:08:11.749 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-17T11:08:11.749 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-17T11:08:11.750 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-17T11:08:11.750 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-17T11:08:11.751 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-17T11:08:12.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:11 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3577560146' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:08:12.034 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:11 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3577560146' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-17T11:08:12.314 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:12.759 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:12 smithi007 ceph-mon[25669]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:13.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:12 smithi145 ceph-mon[33846]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:13.100 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:13.101 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:13.107 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:13.107 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:14.953 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:14 smithi007 ceph-mon[25669]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:14.983 INFO:teuthology.orchestra.run.smithi007.stdout:120259084299 2024-09-17T11:08:14.983 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-17T11:08:15.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:14 smithi145 ceph-mon[33846]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:15.996 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:16.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:16.114 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:16.763 INFO:teuthology.orchestra.run.smithi007.stdout:90194313230 2024-09-17T11:08:16.764 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-17T11:08:16.902 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:16 smithi007 ceph-mon[25669]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:17.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:16 smithi145 ceph-mon[33846]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:17.273 INFO:teuthology.orchestra.run.smithi007.stdout:146028888075 2024-09-17T11:08:17.274 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-17T11:08:18.908 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:18 smithi007 ceph-mon[25669]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:18.908 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:18.908 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:18 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:19.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:18 smithi145 ceph-mon[33846]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:19.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:19.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:18 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:19.350 INFO:teuthology.orchestra.run.smithi007.stdout:158913789962 2024-09-17T11:08:19.351 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-17T11:08:19.351 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:19.352 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:19.515 INFO:teuthology.orchestra.run.smithi007.stdout:120259084299 2024-09-17T11:08:19.515 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-17T11:08:20.935 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:20 smithi007 ceph-mon[25669]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:20.937 INFO:teuthology.orchestra.run.smithi007.stdout:176093659144 2024-09-17T11:08:20.937 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-17T11:08:21.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:20 smithi145 ceph-mon[33846]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:21.274 INFO:teuthology.orchestra.run.smithi007.stdout:68719476751 2024-09-17T11:08:21.275 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-17T11:08:21.457 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:21.460 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:21.461 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:21.900 INFO:teuthology.orchestra.run.smithi007.stdout:85899345934 2024-09-17T11:08:21.900 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-17T11:08:21.913 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:22.157 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:22.378 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:22.594 INFO:teuthology.orchestra.run.smithi007.stdout:120259084300 2024-09-17T11:08:22.840 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:22 smithi007 ceph-mon[25669]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:22.841 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:22 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1929296900' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-17T11:08:23.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:22 smithi145 ceph-mon[33846]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:23.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:22 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1929296900' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-17T11:08:23.643 INFO:teuthology.orchestra.run.smithi007.stdout:158913789963 2024-09-17T11:08:23.775 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:23 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/3995852765' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-17T11:08:23.847 INFO:teuthology.orchestra.run.smithi007.stdout:120259084301 2024-09-17T11:08:24.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:23 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/3995852765' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-17T11:08:24.528 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789962 got 158913789963 for osd.5 2024-09-17T11:08:24.649 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:24.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:24 smithi007 ceph-mon[25669]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:24.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:24 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2699447278' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-17T11:08:24.941 INFO:teuthology.orchestra.run.smithi007.stdout:90194313231 2024-09-17T11:08:25.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:24 smithi145 ceph-mon[33846]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:25.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:24 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2699447278' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-17T11:08:25.373 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:25.373 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:25.763 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:25 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/776183572' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-17T11:08:25.792 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084299 got 120259084301 for osd.3 2024-09-17T11:08:25.794 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:26.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:25 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/776183572' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-17T11:08:26.172 INFO:teuthology.orchestra.run.smithi007.stdout:176093659145 2024-09-17T11:08:26.348 INFO:teuthology.orchestra.run.smithi007.stdout:146028888077 2024-09-17T11:08:26.953 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:26 smithi007 ceph-mon[25669]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:26.953 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:26 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/2552082708' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-17T11:08:26.953 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:26 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/9833537' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-17T11:08:26.983 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313230 got 90194313231 for osd.2 2024-09-17T11:08:26.983 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:27.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:26 smithi145 ceph-mon[33846]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:27.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:26 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/2552082708' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-17T11:08:27.029 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:26 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/9833537' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-17T11:08:27.417 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888075 got 146028888077 for osd.6 2024-09-17T11:08:27.417 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:27.869 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084299 got 120259084300 for osd.4 2024-09-17T11:08:27.869 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:28.613 INFO:teuthology.orchestra.run.smithi007.stdout:85899345935 2024-09-17T11:08:29.020 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:28 smithi007 ceph-mon[25669]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:29.020 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:28 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1737924819' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-17T11:08:29.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:28 smithi145 ceph-mon[33846]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:29.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:28 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1737924819' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-17T11:08:29.160 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345934 got 85899345935 for osd.1 2024-09-17T11:08:29.160 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:29.508 INFO:tasks.cephadm.ceph_manager.ceph:need seq 176093659144 got 176093659145 for osd.7 2024-09-17T11:08:29.508 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:29.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:29 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:29.864 INFO:teuthology.orchestra.run.smithi007.stdout:68719476753 2024-09-17T11:08:30.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:29 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:30.469 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476751 got 68719476753 for osd.0 2024-09-17T11:08:30.469 DEBUG:teuthology.parallel:result is None 2024-09-17T11:08:30.469 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-17T11:08:30.470 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T11:08:30.733 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:30.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:30 smithi007 ceph-mon[25669]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:30.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:30 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1824096003' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-17T11:08:31.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:30 smithi145 ceph-mon[33846]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:31.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:30 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1824096003' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-17T11:08:31.349 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:31.349 INFO:teuthology.orchestra.run.smithi007.stderr:dumped all 2024-09-17T11:08:31.985 INFO:teuthology.orchestra.run.smithi007.stdout:{"pg_ready":true,"pg_map":{"version":124,"stamp":"2024-09-17T11:08:31.243755+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":233992,"kb_used_data":5260,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694456,"statfs":{"total":767926730752,"available":767687122944,"internally_reserved":0,"allocated":5386240,"data_stored":3241392,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":234016304},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002112"},"pg_stats":[{"pgid":"1.0","version":"24'132","reported_seq":186,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T11:07:54.530955+0000","last_change":"2024-09-17T11:07:54.530567+0000","last_active":"2024-09-17T11:07:54.530955+0000","last_peered":"2024-09-17T11:07:54.530955+0000","last_clean":"2024-09-17T11:07:54.530955+0000","last_became_active":"2024-09-17T11:07:54.530068+0000","last_became_peered":"2024-09-17T11:07:54.530068+0000","last_unstale":"2024-09-17T11:07:54.530955+0000","last_undegraded":"2024-09-17T11:07:54.530955+0000","last_fullsized":"2024-09-17T11:07:54.530955+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T11:07:26.586279+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T11:07:26.586279+0000","last_clean_scrub_stamp":"2024-09-17T11:07:26.586279+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T22:01:54.648824+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659147,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":37,"seq":158913789965,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27472,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713584,"statfs":{"total":95990841344,"available":95962710016,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":34,"seq":146028888078,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":28,"seq":120259084302,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084302,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32216,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708840,"statfs":{"total":95990841344,"available":95957852160,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":21,"seq":90194313233,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31632,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709424,"statfs":{"total":95990841344,"available":95958450176,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345936,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31636,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709420,"statfs":{"total":95990841344,"available":95958446080,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":68719476753,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28052,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713004,"statfs":{"total":95990841344,"available":95962116096,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T11:08:31.986 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-17T11:08:32.244 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:32.899 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:32.899 INFO:teuthology.orchestra.run.smithi007.stderr:dumped all 2024-09-17T11:08:32.900 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:32 smithi007 ceph-mon[25669]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:32.900 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:32 smithi007 ceph-mon[25669]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:08:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:32 smithi145 ceph-mon[33846]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:33.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:32 smithi145 ceph-mon[33846]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:08:33.524 INFO:teuthology.orchestra.run.smithi007.stdout:{"pg_ready":true,"pg_map":{"version":124,"stamp":"2024-09-17T11:08:31.243755+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":233992,"kb_used_data":5260,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694456,"statfs":{"total":767926730752,"available":767687122944,"internally_reserved":0,"allocated":5386240,"data_stored":3241392,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":234016304},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002112"},"pg_stats":[{"pgid":"1.0","version":"24'132","reported_seq":186,"reported_epoch":45,"state":"active+clean","last_fresh":"2024-09-17T11:07:54.530955+0000","last_change":"2024-09-17T11:07:54.530567+0000","last_active":"2024-09-17T11:07:54.530955+0000","last_peered":"2024-09-17T11:07:54.530955+0000","last_clean":"2024-09-17T11:07:54.530955+0000","last_became_active":"2024-09-17T11:07:54.530068+0000","last_became_peered":"2024-09-17T11:07:54.530068+0000","last_unstale":"2024-09-17T11:07:54.530955+0000","last_undegraded":"2024-09-17T11:07:54.530955+0000","last_fullsized":"2024-09-17T11:07:54.530955+0000","mapping_epoch":44,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":45,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-17T11:07:26.586279+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-17T11:07:26.586279+0000","last_clean_scrub_stamp":"2024-09-17T11:07:26.586279+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-18T22:01:54.648824+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":41,"seq":176093659147,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28048,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713008,"statfs":{"total":95990841344,"available":95962120192,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":37,"seq":158913789965,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27472,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713584,"statfs":{"total":95990841344,"available":95962710016,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":34,"seq":146028888078,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":28,"seq":120259084302,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27468,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713588,"statfs":{"total":95990841344,"available":95962714112,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084302,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32216,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708840,"statfs":{"total":95990841344,"available":95957852160,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":31914439},"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":21,"seq":90194313233,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31632,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709424,"statfs":{"total":95990841344,"available":95958450176,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345936,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31636,"kb_used_data":440,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709420,"statfs":{"total":95990841344,"available":95958446080,"internally_reserved":0,"allocated":450560,"data_stored":183786,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":68719476753,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28052,"kb_used_data":1020,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713004,"statfs":{"total":95990841344,"available":95962116096,"internally_reserved":0,"allocated":1044480,"data_stored":774154,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-17T11:08:33.525 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-17T11:08:33.525 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-17T11:08:33.525 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-17T11:08:33.525 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-17T11:08:33.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:33 smithi007 ceph-mon[25669]: from='client.14620 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:08:33.784 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:34.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:33 smithi145 ceph-mon[33846]: from='client.14620 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:08:34.522 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:34.522 INFO:teuthology.orchestra.run.smithi007.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-17T11:08:34.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:34 smithi007 ceph-mon[25669]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:34.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:34 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/1593770028' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-17T11:08:34.980 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:34 smithi145 ceph-mon[33846]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:34.980 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:34 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/1593770028' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-17T11:08:35.140 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-17T11:08:35.140 INFO:tasks.cephadm:Setup complete, yielding 2024-09-17T11:08:35.140 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:08:35.151 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:08:35.151 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T11:08:35.417 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:36.090 INFO:teuthology.orchestra.run.smithi007.stdout:Backend: cephadm 2024-09-17T11:08:36.090 INFO:teuthology.orchestra.run.smithi007.stdout:Available: Yes 2024-09-17T11:08:36.090 INFO:teuthology.orchestra.run.smithi007.stdout:Paused: No 2024-09-17T11:08:36.819 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:36 smithi007 ceph-mon[25669]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:36.819 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:36 smithi007 ceph-mon[25669]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:36.852 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T11:08:37.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:36 smithi145 ceph-mon[33846]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:37.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:36 smithi145 ceph-mon[33846]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:37.115 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager.smithi007 smithi007 *:9093,9094 running (2m) 43s ago 3m 18.9M - 0.27.0 11f11916f8cd 8d641c2385e5 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter.smithi007 smithi007 running (3m) 43s ago 3m 7902k - 19.3.0-4937-g74984932 6c1fcab85602 e2a16fd8447c 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter.smithi145 smithi145 running (2m) 48s ago 2m 5326k - 19.3.0-4937-g74984932 6c1fcab85602 9d8fcefe68b8 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi007 smithi007 running (3m) 43s ago 3m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 89e79042dd3e 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi145 smithi145 running (2m) 48s ago 2m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 5ebb88fc2ad8 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:grafana.smithi007 smithi007 *:3000 running (2m) 43s ago 3m 72.3M - 10.4.0 c8b91775d855 6535f57400e7 2024-09-17T11:08:37.751 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi007.jghsql smithi007 *:9283,8765,8443 running (5m) 43s ago 5m 511M - 19.3.0-4937-g74984932 6c1fcab85602 e0321e69a197 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi145.vgzgry smithi145 *:8443,9283,8765 running (2m) 48s ago 2m 456M - 19.3.0-4937-g74984932 6c1fcab85602 594f37bf30bc 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi007 smithi007 running (5m) 43s ago 5m 49.0M 2048M 19.3.0-4937-g74984932 6c1fcab85602 5d258940370f 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi145 smithi145 running (2m) 48s ago 2m 41.1M 2048M 19.3.0-4937-g74984932 6c1fcab85602 40a868218b1f 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi007 smithi007 *:9100 running (3m) 43s ago 3m 11.8M - 1.7.0 72c9c2088986 138b1537593c 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi145 smithi145 *:9100 running (2m) 48s ago 2m 11.9M - 1.7.0 72c9c2088986 3c7d2a2009b6 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.0 smithi145 running (88s) 48s ago 87s 37.0M 3728M 19.3.0-4937-g74984932 6c1fcab85602 c00dafe842f5 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.1 smithi007 running (82s) 43s ago 82s 46.6M 2961M 19.3.0-4937-g74984932 6c1fcab85602 5eb7a72df223 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.2 smithi145 running (81s) 48s ago 80s 45.7M 3728M 19.3.0-4937-g74984932 6c1fcab85602 3cb64b468d91 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.3 smithi007 running (73s) 43s ago 73s 42.6M 2961M 19.3.0-4937-g74984932 6c1fcab85602 2a0eef468e1a 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.4 smithi145 running (74s) 48s ago 73s 36.7M 3728M 19.3.0-4937-g74984932 6c1fcab85602 5ad6fb3a0e2e 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.5 smithi007 running (64s) 43s ago 64s 29.6M 2961M 19.3.0-4937-g74984932 6c1fcab85602 d2d27d05aa03 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.6 smithi145 running (67s) 48s ago 66s 30.8M 3728M 19.3.0-4937-g74984932 6c1fcab85602 727913f999c9 2024-09-17T11:08:37.752 INFO:teuthology.orchestra.run.smithi007.stdout:osd.7 smithi007 running (55s) 43s ago 55s 24.9M 2961M 19.3.0-4937-g74984932 6c1fcab85602 1333e7502131 2024-09-17T11:08:37.753 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus.smithi007 smithi007 *:9095 running (2m) 43s ago 3m 37.8M - 2.51.0 1d3b7f56885b 7f93005bdb91 2024-09-17T11:08:38.370 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T11:08:38.624 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:38.954 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:38 smithi007 ceph-mon[25669]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:38.955 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:38 smithi007 ceph-mon[25669]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:39.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:38 smithi145 ceph-mon[33846]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:39.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:38 smithi145 ceph-mon[33846]: from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager ?:9093,9094 1/1 44s ago 4m count:1 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter 2/2 49s ago 4m * 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:crash 2/2 49s ago 4m * 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:grafana ?:3000 1/1 44s ago 4m count:1 2024-09-17T11:08:39.246 INFO:teuthology.orchestra.run.smithi007.stdout:mgr 2/2 49s ago 4m count:2 2024-09-17T11:08:39.247 INFO:teuthology.orchestra.run.smithi007.stdout:mon 2/2 49s ago 3m smithi007:172.21.15.7=smithi007;smithi145:172.21.15.145=smithi145;count:2 2024-09-17T11:08:39.247 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter ?:9100 2/2 49s ago 4m * 2024-09-17T11:08:39.247 INFO:teuthology.orchestra.run.smithi007.stdout:osd.all-available-devices 8 49s ago 2m * 2024-09-17T11:08:39.247 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus ?:9095 1/1 44s ago 4m count:1 2024-09-17T11:08:40.061 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T11:08:40.327 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:40.699 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:40 smithi007 ceph-mon[25669]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:40.699 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:40 smithi007 ceph-mon[25669]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:40.982 INFO:teuthology.orchestra.run.smithi007.stdout:HOST ADDR LABELS STATUS 2024-09-17T11:08:40.982 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 172.21.15.7 2024-09-17T11:08:40.982 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 172.21.15.145 2024-09-17T11:08:40.982 INFO:teuthology.orchestra.run.smithi007.stdout:2 hosts in cluster 2024-09-17T11:08:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:40 smithi145 ceph-mon[33846]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:41.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:40 smithi145 ceph-mon[33846]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:41.725 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:41 smithi007 ceph-mon[25669]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:41.727 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T11:08:41.988 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:42.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:41 smithi145 ceph-mon[33846]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300GE480DGN 447G No 42s ago Has a FileSystem, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme1n1 ssd Linux_22a0bbda37f853726811 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme2n1 ssd Linux_1e365fc8974e88ec6c2a 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme3n1 ssd Linux_15a98e1b4775f43cd59e 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme4n1 ssd Linux_a5b2d160a20a21b6b1c0 89.4G No 42s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500N9400BGN 372G No 48s ago Has a FileSystem, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme1n1 ssd Linux_e712ef1fd6f8ce8916be 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme2n1 ssd Linux_55ed5629391979a7ccc9 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.654 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme3n1 ssd Linux_114bb37e137e9e141976 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.655 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme4n1 ssd Linux_168043ff983458bfd827 89.4G No 48s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:42.948 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:42 smithi007 ceph-mon[25669]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:43.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:42 smithi145 ceph-mon[33846]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:43.344 INFO:teuthology.run_tasks:Running task vip... 2024-09-17T11:08:43.356 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-17T11:08:43.356 INFO:tasks.vip:peername 172.21.15.7 2024-09-17T11:08:43.360 INFO:tasks.vip:172.21.15.7 in 172.21.0.0/20, pos 3846 2024-09-17T11:08:43.364 INFO:tasks.vip:smithi007.front.sepia.ceph.com static 10.0.15.7, vnet 10.0.0.0/16 2024-09-17T11:08:43.364 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.7')] 2024-09-17T11:08:43.365 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip route ls 2024-09-17T11:08:43.391 INFO:teuthology.orchestra.run.smithi007.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.7 metric 100 2024-09-17T11:08:43.391 INFO:teuthology.orchestra.run.smithi007.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.7 metric 100 2024-09-17T11:08:43.392 INFO:tasks.vip:Configuring 10.0.15.7 on smithi007.front.sepia.ceph.com iface ens1f0... 2024-09-17T11:08:43.393 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr add 10.0.15.7/16 dev ens1f0 2024-09-17T11:08:43.460 INFO:tasks.vip:peername 172.21.15.145 2024-09-17T11:08:43.463 INFO:tasks.vip:172.21.15.145 in 172.21.0.0/20, pos 3984 2024-09-17T11:08:43.517 INFO:tasks.vip:smithi145.front.sepia.ceph.com static 10.0.15.145, vnet 10.0.0.0/16 2024-09-17T11:08:43.517 DEBUG:teuthology.orchestra.run.smithi145:> sudo ip route ls 2024-09-17T11:08:43.551 INFO:teuthology.orchestra.run.smithi145.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.145 metric 100 2024-09-17T11:08:43.551 INFO:teuthology.orchestra.run.smithi145.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.145 metric 100 2024-09-17T11:08:43.553 INFO:tasks.vip:Configuring 10.0.15.145 on smithi145.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T11:08:43.553 DEBUG:teuthology.orchestra.run.smithi145:> sudo ip addr add 10.0.15.145/16 dev enp3s0f1 2024-09-17T11:08:43.621 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:08:43.632 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:08:43.632 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-17T11:08:43.889 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:44.010 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:43 smithi007 ceph-mon[25669]: from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:44.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:43 smithi145 ceph-mon[33846]: from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:44.582 INFO:teuthology.orchestra.run.smithi007.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:08:44.582 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300GE480DGN 447G No 44s ago Has a FileSystem, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme1n1 ssd Linux_22a0bbda37f853726811 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme2n1 ssd Linux_1e365fc8974e88ec6c2a 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme3n1 ssd Linux_15a98e1b4775f43cd59e 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme4n1 ssd Linux_a5b2d160a20a21b6b1c0 89.4G No 44s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500N9400BGN 372G No 50s ago Has a FileSystem, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme1n1 ssd Linux_e712ef1fd6f8ce8916be 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme2n1 ssd Linux_55ed5629391979a7ccc9 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme3n1 ssd Linux_114bb37e137e9e141976 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.583 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme4n1 ssd Linux_168043ff983458bfd827 89.4G No 50s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:08:44.881 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:44 smithi007 ceph-mon[25669]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:44.881 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:44 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:08:44.881 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:44 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:44 smithi145 ceph-mon[33846]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:44 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:08:45.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:44 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:08:45.209 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:08:45.218 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:08:45.218 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T11:08:45.245 INFO:teuthology.orchestra.run.smithi007.stderr:+ systemctl stop nfs-server 2024-09-17T11:08:45.254 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T11:08:45.254 DEBUG:teuthology.orchestra.run.smithi145:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-17T11:08:45.278 INFO:teuthology.orchestra.run.smithi145.stderr:+ systemctl stop nfs-server 2024-09-17T11:08:45.285 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:08:45.297 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:08:45.297 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-17T11:08:46.022 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:46.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:45 smithi145 ceph-mon[33846]: from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:46.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:45 smithi007 ceph-mon[25669]: from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:46.717 INFO:teuthology.orchestra.run.smithi007.stdout:Scheduled rgw.foorgw update... 2024-09-17T11:08:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:46 smithi145 ceph-mon[33846]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:46 smithi007 ceph-mon[25669]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:47.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.761 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:47 smithi007 ceph-mon[25669]: from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:47.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:47 smithi007 ceph-mon[25669]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:08:47.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:47 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:47.799 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.7/16' 2024-09-17T11:08:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:47 smithi145 ceph-mon[33846]: from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:47 smithi145 ceph-mon[33846]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:08:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:47 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:47 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:47 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:48.488 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:49.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:48 smithi145 ceph-mon[33846]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:49.029 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:48 smithi007 ceph-mon[25669]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:50.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:49 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:08:50.198 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:49 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-17T11:08:51.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:51.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.7/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.7/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: osdmap e46: 8 total, 8 up, 8 in 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:51.799 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:08:51.809 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:08:51.809 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-17T11:08:51.838 INFO:teuthology.orchestra.run.smithi007.stderr:+ dnf install -y python3-boto3 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: Saving service nfs.foo spec with placement count:1 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T11:08:52.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:51 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:52.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-17T11:08:52.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: osdmap e47: 8 total, 8 up, 8 in 2024-09-17T11:08:52.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: Saving service nfs.foo spec with placement count:1 2024-09-17T11:08:52.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:52.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: Saving service ingress.nfs.foo spec with placement count:2 2024-09-17T11:08:52.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:51 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:52.426 INFO:teuthology.orchestra.run.smithi007.stdout:Last metadata expiration check: 0:07:57 ago on Tue 17 Sep 2024 11:00:55 AM UTC. 2024-09-17T11:08:52.580 INFO:teuthology.orchestra.run.smithi007.stdout:Dependencies resolved. 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: Package Arch Version Repository Size 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout:Installing: 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: python3-boto3 noarch 1.28.62-1.el9 epel 164 k 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout:Installing dependencies: 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: python3-botocore noarch 1.31.62-2.el9 epel 6.1 M 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: python3-jmespath noarch 0.9.4-11.el9 appstream 50 k 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: python3-s3transfer noarch 0.7.0-1.el9 epel 113 k 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-17T11:08:52.582 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:52.583 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction Summary 2024-09-17T11:08:52.583 INFO:teuthology.orchestra.run.smithi007.stdout:================================================================================ 2024-09-17T11:08:52.583 INFO:teuthology.orchestra.run.smithi007.stdout:Install 5 Packages 2024-09-17T11:08:52.583 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:52.648 INFO:teuthology.orchestra.run.smithi007.stdout:Total download size: 6.6 M 2024-09-17T11:08:52.648 INFO:teuthology.orchestra.run.smithi007.stdout:Installed size: 86 M 2024-09-17T11:08:52.648 INFO:teuthology.orchestra.run.smithi007.stdout:Downloading Packages: 2024-09-17T11:08:52.892 INFO:teuthology.orchestra.run.smithi007.stdout:(1/5): python3-boto3-1.28.62-1.el9.noarch.rpm 1.9 MB/s | 164 kB 00:00 2024-09-17T11:08:52.982 INFO:teuthology.orchestra.run.smithi007.stdout:(2/5): python3-urllib3-1.26.5-6.el9.noarch.rpm 1.2 MB/s | 215 kB 00:00 2024-09-17T11:08:53.038 INFO:teuthology.orchestra.run.smithi007.stdout:(3/5): python3-s3transfer-0.7.0-1.el9.noarch.rp 2.0 MB/s | 113 kB 00:00 2024-09-17T11:08:53.209 INFO:teuthology.orchestra.run.smithi007.stdout:(4/5): python3-botocore-1.31.62-2.el9.noarch.rp 19 MB/s | 6.1 MB 00:00 2024-09-17T11:08:53.252 INFO:teuthology.orchestra.run.smithi007.stdout:(5/5): python3-jmespath-0.9.4-11.el9.noarch.rpm 113 kB/s | 50 kB 00:00 2024-09-17T11:08:53.253 INFO:teuthology.orchestra.run.smithi007.stdout:-------------------------------------------------------------------------------- 2024-09-17T11:08:53.254 INFO:teuthology.orchestra.run.smithi007.stdout:Total 11 MB/s | 6.6 MB 00:00 2024-09-17T11:08:53.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:52 smithi145 ceph-mon[33846]: pgmap v136: 33 pgs: 9 creating+peering, 1 active+clean, 23 unknown; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:53.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:52 smithi145 ceph-mon[33846]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T11:08:53.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:52 smithi145 ceph-mon[33846]: mgrmap e21: smithi007.jghsql(active, since 3m), standbys: smithi145.vgzgry 2024-09-17T11:08:53.280 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction check 2024-09-17T11:08:53.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:52 smithi007 ceph-mon[25669]: pgmap v136: 33 pgs: 9 creating+peering, 1 active+clean, 23 unknown; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:53.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:52 smithi007 ceph-mon[25669]: osdmap e48: 8 total, 8 up, 8 in 2024-09-17T11:08:53.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:52 smithi007 ceph-mon[25669]: mgrmap e21: smithi007.jghsql(active, since 3m), standbys: smithi145.vgzgry 2024-09-17T11:08:53.291 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction check succeeded. 2024-09-17T11:08:53.291 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction test 2024-09-17T11:08:53.396 INFO:teuthology.orchestra.run.smithi007.stdout:Transaction test succeeded. 2024-09-17T11:08:53.396 INFO:teuthology.orchestra.run.smithi007.stdout:Running transaction 2024-09-17T11:08:53.663 INFO:teuthology.orchestra.run.smithi007.stdout: Preparing : 1/1 2024-09-17T11:08:53.778 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-jmespath-0.9.4-11.el9.noarch 1/5 2024-09-17T11:08:55.212 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:54 smithi007 ceph-mon[25669]: pgmap v138: 33 pgs: 9 creating+peering, 16 active+clean, 8 unknown; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:55.248 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 2/5 2024-09-17T11:08:55.321 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:54 smithi145 ceph-mon[33846]: pgmap v138: 33 pgs: 9 creating+peering, 16 active+clean, 8 unknown; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:08:55.351 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-botocore-1.31.62-2.el9.noarch 3/5 2024-09-17T11:08:55.438 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-s3transfer-0.7.0-1.el9.noarch 4/5 2024-09-17T11:08:55.511 INFO:teuthology.orchestra.run.smithi007.stdout: Installing : python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T11:08:56.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: pgmap v139: 33 pgs: 4 creating+peering, 29 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi145.byquig", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi145.byquig", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:56.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:56 smithi145 ceph-mon[33846]: Deploying daemon rgw.foorgw.smithi145.byquig on smithi145 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: pgmap v139: 33 pgs: 4 creating+peering, 29 active+clean; 577 KiB data, 229 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi145.byquig", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:08:56.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi145.byquig", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:08:56.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:56.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:56.534 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:56 smithi007 ceph-mon[25669]: Deploying daemon rgw.foorgw.smithi145.byquig on smithi145 2024-09-17T11:08:56.840 INFO:teuthology.orchestra.run.smithi007.stdout: Running scriptlet: python3-boto3-1.28.62-1.el9.noarch 5/5 2024-09-17T11:08:56.840 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 1/5 2024-09-17T11:08:56.840 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-jmespath-0.9.4-11.el9.noarch 2/5 2024-09-17T11:08:56.840 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-boto3-1.28.62-1.el9.noarch 3/5 2024-09-17T11:08:56.840 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-botocore-1.31.62-2.el9.noarch 4/5 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: Verifying : python3-s3transfer-0.7.0-1.el9.noarch 5/5 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout:Installed: 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: python3-boto3-1.28.62-1.el9.noarch python3-botocore-1.31.62-2.el9.noarch 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: python3-jmespath-0.9.4-11.el9.noarch python3-s3transfer-0.7.0-1.el9.noarch 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:08:57.148 INFO:teuthology.orchestra.run.smithi007.stdout:Complete! 2024-09-17T11:08:57.351 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-09-17T11:08:57.418 INFO:teuthology.orchestra.run.smithi007.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-17T11:08:57.652 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring fsid 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:08:57.718 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:08:57.839 INFO:teuthology.orchestra.run.smithi007.stderr:Using ceph image with id '6c1fcab85602' and tag '7498493279982dfe87f00616198a5967475f6169' created on 2024-09-15 22:19:23 +0000 UTC 2024-09-17T11:08:57.839 INFO:teuthology.orchestra.run.smithi007.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: pgmap v140: 33 pgs: 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.ghgkpy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.ghgkpy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: Deploying daemon rgw.foorgw.smithi007.ghgkpy on smithi007 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T11:08:58.773 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/273819288' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:08:58.774 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:08:58 smithi007 ceph-mon[25669]: from='client.? ' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:08:59.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: pgmap v140: 33 pgs: 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:08:59.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:59.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.ghgkpy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi007.ghgkpy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: Deploying daemon rgw.foorgw.smithi007.ghgkpy on smithi007 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: osdmap e49: 8 total, 8 up, 8 in 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/273819288' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:08:59.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:08:58 smithi145 ceph-mon[33846]: from='client.? ' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-17T11:09:00.512 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:00 smithi007 ceph-mon[25669]: pgmap v142: 65 pgs: 8 creating+peering, 24 unknown, 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:09:00.512 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:00 smithi007 ceph-mon[25669]: from='client.? ' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T11:09:00.512 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:00 smithi007 ceph-mon[25669]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T11:09:00.512 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:00.513 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:00 smithi007 ceph-mon[25669]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:09:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:00 smithi145 ceph-mon[33846]: pgmap v142: 65 pgs: 8 creating+peering, 24 unknown, 33 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-17T11:09:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:00 smithi145 ceph-mon[33846]: from='client.? ' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-17T11:09:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:00 smithi145 ceph-mon[33846]: osdmap e50: 8 total, 8 up, 8 in 2024-09-17T11:09:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:00 smithi145 ceph-mon[33846]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:09:01.399 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T11:09:01.399 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:09:01.399 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:09:01.399 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.399 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Creating key for client.nfs.foo.0.0.smithi007.cwftbi 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-17T11:09:01.400 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Rados config object exists: conf-nfs.foo 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Creating key for client.nfs.foo.0.0.smithi007.cwftbi-rgw 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Bind address in nfs.foo.0.0.smithi007.cwftbi's ganesha conf is defaulting to empty 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:01.401 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:01 smithi007 ceph-mon[25669]: Deploying daemon nfs.foo.0.0.smithi007.cwftbi on smithi007 2024-09-17T11:09:01.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: osdmap e51: 8 total, 8 up, 8 in 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Saving service rgw.foorgw spec with placement count:2 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Creating key for client.nfs.foo.0.0.smithi007.cwftbi 2024-09-17T11:09:01.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Rados config object exists: conf-nfs.foo 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Creating key for client.nfs.foo.0.0.smithi007.cwftbi-rgw 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi007.cwftbi-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-17T11:09:01.529 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Bind address in nfs.foo.0.0.smithi007.cwftbi's ganesha conf is defaulting to empty 2024-09-17T11:09:01.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:01.530 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:01 smithi145 ceph-mon[33846]: Deploying daemon nfs.foo.0.0.smithi007.cwftbi on smithi007 2024-09-17T11:09:02.348 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:02 smithi007 ceph-mon[25669]: pgmap v145: 97 pgs: 9 creating+peering, 49 unknown, 39 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 682 B/s wr, 4 op/s 2024-09-17T11:09:02.348 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:02 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:09:02.348 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:02 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:09:02.349 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:02 smithi007 ceph-mon[25669]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T11:09:02.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:02 smithi145 ceph-mon[33846]: pgmap v145: 97 pgs: 9 creating+peering, 49 unknown, 39 active+clean; 577 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 682 B/s wr, 4 op/s 2024-09-17T11:09:02.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:02 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:09:02.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:02 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-17T11:09:02.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:02 smithi145 ceph-mon[33846]: osdmap e52: 8 total, 8 up, 8 in 2024-09-17T11:09:03.665 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.666 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:03 smithi007 ceph-mon[25669]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T11:09:03.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: osdmap e53: 8 total, 8 up, 8 in 2024-09-17T11:09:03.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-17T11:09:03.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:03 smithi145 ceph-mon[33846]: osdmap e54: 8 total, 8 up, 8 in 2024-09-17T11:09:04.732 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:04 smithi145 ceph-mon[33846]: Deploying daemon haproxy.nfs.foo.smithi007.jnmyom on smithi007 2024-09-17T11:09:04.732 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:04 smithi145 ceph-mon[33846]: pgmap v148: 129 pgs: 13 creating+peering, 43 unknown, 73 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.0 KiB/s wr, 11 op/s 2024-09-17T11:09:04.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:04 smithi007 ceph-mon[25669]: Deploying daemon haproxy.nfs.foo.smithi007.jnmyom on smithi007 2024-09-17T11:09:04.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:04 smithi007 ceph-mon[25669]: pgmap v148: 129 pgs: 13 creating+peering, 43 unknown, 73 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.0 KiB/s wr, 11 op/s 2024-09-17T11:09:05.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:05 smithi145 ceph-mon[33846]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T11:09:05.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: osdmap e55: 8 total, 8 up, 8 in 2024-09-17T11:09:05.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-17T11:09:05.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:05 smithi007 ceph-mon[25669]: osdmap e56: 8 total, 8 up, 8 in 2024-09-17T11:09:06.306 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: pgmap v151: 161 pgs: 7 creating+peering, 46 unknown, 108 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.7 KiB/s wr, 7 op/s 2024-09-17T11:09:06.306 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.306 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.307 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.307 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.307 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.307 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.307 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:06 smithi007 ceph-mon[25669]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T11:09:06.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: pgmap v151: 161 pgs: 7 creating+peering, 46 unknown, 108 active+clean; 578 KiB data, 233 MiB used, 715 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.7 KiB/s wr, 7 op/s 2024-09-17T11:09:06.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:06.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.145:0/3083281995' entity='client.rgw.foorgw.smithi145.byquig' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/760931986' entity='client.admin' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:06.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:06 smithi145 ceph-mon[33846]: osdmap e57: 8 total, 8 up, 8 in 2024-09-17T11:09:07.693 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:07 smithi007 ceph-mon[25669]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:09:07.694 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:07 smithi007 ceph-mon[25669]: Cluster is now healthy 2024-09-17T11:09:07.721 INFO:teuthology.run_tasks:Running task python... 2024-09-17T11:09:07.742 INFO:tasks.python:Running python on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:07.742 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-09-17T11:09:07.742 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T11:09:07.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:07 smithi145 ceph-mon[33846]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:09:07.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:07 smithi145 ceph-mon[33846]: Cluster is now healthy 2024-09-17T11:09:08.762 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:08 smithi007 ceph-mon[25669]: pgmap v154: 161 pgs: 6 creating+peering, 12 unknown, 143 active+clean; 579 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 67 KiB/s rd, 5.2 KiB/s wr, 137 op/s 2024-09-17T11:09:08.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:08 smithi145 ceph-mon[33846]: pgmap v154: 161 pgs: 6 creating+peering, 12 unknown, 143 active+clean; 579 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 67 KiB/s rd, 5.2 KiB/s wr, 137 op/s 2024-09-17T11:09:09.706 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:09 smithi007 ceph-mon[25669]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T11:09:09.706 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:09 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-17T11:09:09.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:09 smithi145 ceph-mon[33846]: osdmap e58: 8 total, 8 up, 8 in 2024-09-17T11:09:09.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:09 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-17T11:09:10.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: pgmap v156: 193 pgs: 13 creating+peering, 21 unknown, 159 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 6.8 KiB/s wr, 246 op/s 2024-09-17T11:09:10.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:09:10.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:10 smithi145 ceph-mon[33846]: Deploying daemon haproxy.nfs.foo.smithi145.uzpvja on smithi145 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: pgmap v156: 193 pgs: 13 creating+peering, 21 unknown, 159 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 6.8 KiB/s wr, 246 op/s 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: osdmap e59: 8 total, 8 up, 8 in 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:10.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:10 smithi007 ceph-mon[25669]: Deploying daemon haproxy.nfs.foo.smithi145.uzpvja on smithi145 2024-09-17T11:09:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:11 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:11.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:11 smithi007 ceph-mon[25669]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T11:09:11.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:11 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-17T11:09:11.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:11 smithi145 ceph-mon[33846]: osdmap e60: 8 total, 8 up, 8 in 2024-09-17T11:09:12.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:12 smithi145 ceph-mon[33846]: pgmap v159: 193 pgs: 11 creating+peering, 17 unknown, 165 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 143 KiB/s rd, 8.3 KiB/s wr, 299 op/s 2024-09-17T11:09:12.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:12 smithi145 ceph-mon[33846]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:09:12.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:12 smithi145 ceph-mon[33846]: Cluster is now healthy 2024-09-17T11:09:12.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:12 smithi145 ceph-mon[33846]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T11:09:12.778 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:12 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-17T11:09:12.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:12 smithi007 ceph-mon[25669]: pgmap v159: 193 pgs: 11 creating+peering, 17 unknown, 165 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 143 KiB/s rd, 8.3 KiB/s wr, 299 op/s 2024-09-17T11:09:12.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:12 smithi007 ceph-mon[25669]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-17T11:09:12.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:12 smithi007 ceph-mon[25669]: Cluster is now healthy 2024-09-17T11:09:12.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:12 smithi007 ceph-mon[25669]: osdmap e61: 8 total, 8 up, 8 in 2024-09-17T11:09:12.784 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:12 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-17T11:09:13.443 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:09:13.453 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:13.453 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-17T11:09:13.718 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:13.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:13 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T11:09:13.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:13 smithi145 ceph-mon[33846]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T11:09:13.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:13 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-17T11:09:13.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:13 smithi145 ceph-mon[33846]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T11:09:13.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:13 smithi145 ceph-mon[33846]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T11:09:13.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:13 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-17T11:09:13.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:13 smithi007 ceph-mon[25669]: osdmap e62: 8 total, 8 up, 8 in 2024-09-17T11:09:13.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:13 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-17T11:09:13.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:13 smithi007 ceph-mon[25669]: from='client.? 172.21.15.7:0/4185614699' entity='client.rgw.foorgw.smithi007.ghgkpy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-17T11:09:13.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:13 smithi007 ceph-mon[25669]: osdmap e63: 8 total, 8 up, 8 in 2024-09-17T11:09:14.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:14 smithi145 ceph-mon[33846]: pgmap v162: 225 pgs: 25 creating+peering, 13 unknown, 187 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 32 KiB/s rd, 2.2 KiB/s wr, 68 op/s 2024-09-17T11:09:14.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:14 smithi007 ceph-mon[25669]: pgmap v162: 225 pgs: 25 creating+peering, 13 unknown, 187 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 32 KiB/s rd, 2.2 KiB/s wr, 68 op/s 2024-09-17T11:09:14.965 INFO:teuthology.orchestra.run.smithi007.stdout:{ 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout: "bind": "/foobucket", 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout: "cluster": "foo", 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout: "mode": "RW", 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout: "path": "foobucket", 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout: "squash": "none" 2024-09-17T11:09:14.966 INFO:teuthology.orchestra.run.smithi007.stdout:} 2024-09-17T11:09:15.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:15 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:15.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:15 smithi007 ceph-mon[25669]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:15.661 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T11:09:15.671 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-17T11:09:15.671 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:15.766 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:15 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:15.767 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:15 smithi145 ceph-mon[33846]: from='client.14718 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:15.932 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:16.643 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:16.643 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:16.143754Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:16.643 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:16 smithi007 ceph-mon[25669]: pgmap v164: 225 pgs: 14 creating+peering, 3 unknown, 208 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 838 B/s wr, 13 op/s 2024-09-17T11:09:16.643 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.643 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.644 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.644 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:16 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:16 smithi145 ceph-mon[33846]: pgmap v164: 225 pgs: 14 creating+peering, 3 unknown, 208 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 838 B/s wr, 13 op/s 2024-09-17T11:09:16.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:16.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:16 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:17.506 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:17 smithi007 ceph-mon[25669]: 10.0.31.7 is in 10.0.0.0/16 on smithi145 interface enp3s0f1 2024-09-17T11:09:17.506 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:17 smithi007 ceph-mon[25669]: 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-09-17T11:09:17.506 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:17 smithi007 ceph-mon[25669]: Deploying daemon keepalived.nfs.foo.smithi145.jrxtle on smithi145 2024-09-17T11:09:17.506 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:17 smithi007 ceph-mon[25669]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:17.542 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:17.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:17 smithi145 ceph-mon[33846]: 10.0.31.7 is in 10.0.0.0/16 on smithi145 interface enp3s0f1 2024-09-17T11:09:17.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:17 smithi145 ceph-mon[33846]: 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-09-17T11:09:17.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:17 smithi145 ceph-mon[33846]: Deploying daemon keepalived.nfs.foo.smithi145.jrxtle on smithi145 2024-09-17T11:09:17.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:17 smithi145 ceph-mon[33846]: from='client.14758 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:18.543 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:18.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:18 smithi145 ceph-mon[33846]: pgmap v165: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 1023 B/s wr, 18 op/s 2024-09-17T11:09:18.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:18 smithi007 ceph-mon[25669]: pgmap v165: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 1023 B/s wr, 18 op/s 2024-09-17T11:09:18.818 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:19.503 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:19.503 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:16.143754Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:20.152 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:20.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:20 smithi007 ceph-mon[25669]: pgmap v166: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 16 KiB/s rd, 1.0 KiB/s wr, 24 op/s 2024-09-17T11:09:20.758 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:20 smithi007 ceph-mon[25669]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:20.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:20 smithi145 ceph-mon[33846]: pgmap v166: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 16 KiB/s rd, 1.0 KiB/s wr, 24 op/s 2024-09-17T11:09:20.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:20 smithi145 ceph-mon[33846]: from='client.14762 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:21.153 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:21.433 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:22.097 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:22.097 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:16.143754Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:22.695 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:22 smithi145 ceph-mon[33846]: pgmap v167: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 807 B/s wr, 21 op/s 2024-09-17T11:09:22.695 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:22 smithi145 ceph-mon[33846]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:22.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:22 smithi007 ceph-mon[25669]: pgmap v167: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 14 KiB/s rd, 807 B/s wr, 21 op/s 2024-09-17T11:09:22.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:22 smithi007 ceph-mon[25669]: from='client.14766 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:22.929 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:23.930 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:24.257 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:24.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-09-17T11:09:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: 10.0.31.7 is in 10.0.0.0/16 on smithi145 interface enp3s0f1 2024-09-17T11:09:24.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:24 smithi007 ceph-mon[25669]: Deploying daemon keepalived.nfs.foo.smithi007.nmcvtf on smithi007 2024-09-17T11:09:24.474 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.475 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.475 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:24.475 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: 10.0.31.7 is in 10.0.0.0/16 on smithi007 interface ens1f0 2024-09-17T11:09:24.475 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: 10.0.31.7 is in 10.0.0.0/16 on smithi145 interface enp3s0f1 2024-09-17T11:09:24.475 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:24 smithi145 ceph-mon[33846]: Deploying daemon keepalived.nfs.foo.smithi007.nmcvtf on smithi007 2024-09-17T11:09:25.175 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:25.176 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:23.046791Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:25.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:25 smithi145 ceph-mon[33846]: pgmap v168: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 614 B/s wr, 18 op/s 2024-09-17T11:09:25.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:25 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:25.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:25 smithi007 ceph-mon[25669]: pgmap v168: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 12 KiB/s rd, 614 B/s wr, 18 op/s 2024-09-17T11:09:25.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:25 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:27.030 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:27 smithi007 ceph-mon[25669]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:27.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:27 smithi007 ceph-mon[25669]: pgmap v169: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 517 B/s wr, 15 op/s 2024-09-17T11:09:27.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:27 smithi145 ceph-mon[33846]: from='client.14770 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:27.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:27 smithi145 ceph-mon[33846]: pgmap v169: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 517 B/s wr, 15 op/s 2024-09-17T11:09:28.031 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:28.361 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:29.030 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:29.030 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:23.046791Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:29.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:29 smithi007 ceph-mon[25669]: pgmap v170: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-17T11:09:29.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:29 smithi145 ceph-mon[33846]: pgmap v170: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-17T11:09:29.857 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]} : dispatch 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:30 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='client.14774 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]} : dispatch 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:30 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:30.859 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:31.139 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:31.265 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:31 smithi007 ceph-mon[25669]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 4.6 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-17T11:09:31.265 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]': finished 2024-09-17T11:09:31.266 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-17T11:09:31.266 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:31 smithi007 ceph-mon[25669]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T11:09:31.266 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:31 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:31.431 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:31 smithi145 ceph-mon[33846]: pgmap v171: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 4.6 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-17T11:09:31.431 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.a", "id": [4, 6]}]': finished 2024-09-17T11:09:31.431 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-17T11:09:31.431 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:31 smithi145 ceph-mon[33846]: osdmap e64: 8 total, 8 up, 8 in 2024-09-17T11:09:31.431 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:31 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:31.880 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:31.881 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:46.693465Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:46.693555Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:30.058582Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:46.693697Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:46.693765Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:46.693627Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:46.693852Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-17T11:09:32.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:32 smithi007 ceph-mon[25669]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T11:09:32.407 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:32 smithi145 ceph-mon[33846]: osdmap e65: 8 total, 8 up, 8 in 2024-09-17T11:09:33.127 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:33 smithi007 ceph-mon[25669]: pgmap v174: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:33.127 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:33 smithi007 ceph-mon[25669]: from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:33.362 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:33 smithi145 ceph-mon[33846]: pgmap v174: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:33.362 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:33 smithi145 ceph-mon[33846]: from='client.14778 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:33.498 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:34.500 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:34.855 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:35.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:34 smithi145 ceph-mon[33846]: pgmap v175: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:35.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:35.028 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:34 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:35.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:34 smithi007 ceph-mon[25669]: pgmap v175: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:35.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:35.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:34 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:35.964 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:35 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:36.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:35 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:36.276 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:36.277 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:08:50.318188Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:08:50.317980Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:08:50.318051Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:08:50.318255Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:30.058582Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "last_refresh": "2024-09-17T11:09:33.575198Z", "ports": [2049, 9049], "running": 2, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:08:50.317905Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:08:50.317808Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:08:50.318121Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:08:50.318388Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:08:50.318321Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "last_refresh": "2024-09-17T11:09:33.575119Z", "ports": [8800], "running": 1, "size": 2}}] 2024-09-17T11:09:37.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:36 smithi145 ceph-mon[33846]: pgmap v176: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:37.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:36 smithi007 ceph-mon[25669]: pgmap v176: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail 2024-09-17T11:09:37.130 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-17T11:09:38.026 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:37 smithi007 ceph-mon[25669]: from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:38.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:37 smithi145 ceph-mon[33846]: from='client.14782 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:38.132 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:38.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:38 smithi007 ceph-mon[25669]: pgmap v177: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:39.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:38 smithi145 ceph-mon[33846]: pgmap v177: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-09-17T11:09:39.046 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:39.775 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:39.775 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:09:38.931002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:09:33.574326Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:09:33.574438Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:09:38.931071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:30.058582Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "last_refresh": "2024-09-17T11:09:33.575198Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:09:33.574611Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:09:33.574694Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:03.200198Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "last_refresh": "2024-09-17T11:09:38.931554Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:09:33.574526Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:09:33.574775Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:09:38.931139Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "last_refresh": "2024-09-17T11:09:33.575119Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:39 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:40.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:40.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:40.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:40.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:39 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:40.467 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-17T11:09:40.467 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-17T11:09:40.478 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-17T11:09:40.478 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- ceph orch ls -f json 2024-09-17T11:09:41.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 111 B/s rd, 0 op/s 2024-09-17T11:09:41.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: Checking dashboard <-> RGW credentials 2024-09-17T11:09:41.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:41.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:41.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-09-17T11:09:41.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:40 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: pgmap v178: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 111 B/s rd, 0 op/s 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: Checking dashboard <-> RGW credentials 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: Reconfiguring prometheus.smithi007 (dependencies changed)... 2024-09-17T11:09:41.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:40 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:09:41.850 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:42.068 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:41 smithi007 ceph-mon[25669]: Reconfiguring daemon prometheus.smithi007 on smithi007 2024-09-17T11:09:42.068 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:41 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:09:42.068 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:41 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:09:42.068 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:41 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:09:42.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:41 smithi145 ceph-mon[33846]: Reconfiguring daemon prometheus.smithi007 on smithi007 2024-09-17T11:09:42.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:41 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:09:42.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:41 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-17T11:09:42.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:41 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-17T11:09:43.249 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:42 smithi007 ceph-mon[25669]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 200 B/s wr, 1 op/s 2024-09-17T11:09:43.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:42 smithi145 ceph-mon[33846]: pgmap v179: 225 pgs: 225 active+clean; 583 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.6 KiB/s rd, 200 B/s wr, 1 op/s 2024-09-17T11:09:43.967 INFO:teuthology.orchestra.run.smithi007.stdout: 2024-09-17T11:09:43.967 INFO:teuthology.orchestra.run.smithi007.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-17T11:04:13.038053Z", "last_refresh": "2024-09-17T11:09:38.931002Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:39.100235Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-17T11:04:06.945501Z", "last_refresh": "2024-09-17T11:09:33.574326Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:41.876876Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-17T11:04:05.078535Z", "last_refresh": "2024-09-17T11:09:33.574438Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-17T11:04:10.312355Z", "last_refresh": "2024-09-17T11:09:38.931071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:30.058582Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.7/16"}, "status": {"created": "2024-09-17T11:08:50.978204Z", "last_refresh": "2024-09-17T11:09:33.575198Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.7/16"}}, {"events": ["2024-09-17T11:05:49.245290Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-17T11:04:03.524746Z", "last_refresh": "2024-09-17T11:09:33.574611Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:05:58.175692Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi007:172.21.15.7=smithi007", "smithi145:172.21.15.145=smithi145"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-17T11:04:50.113132Z", "last_refresh": "2024-09-17T11:09:33.574694Z", "running": 2, "size": 2}}, {"events": ["2024-09-17T11:09:39.935319Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-17T11:08:50.973978Z", "last_refresh": "2024-09-17T11:09:38.931554Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:05:46.147785Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-17T11:04:11.630884Z", "last_refresh": "2024-09-17T11:09:33.574526Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-17T11:06:03.975041Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-17T11:06:03.971086Z", "last_refresh": "2024-09-17T11:09:33.574775Z", "running": 8, "size": 8}}, {"events": ["2024-09-17T11:05:58.180243Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-17T11:04:09.051290Z", "last_refresh": "2024-09-17T11:09:38.931139Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-17T11:09:00.578614Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-17T11:09:00.569882Z", "last_refresh": "2024-09-17T11:09:33.575119Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-17T11:09:45.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:44 smithi145 ceph-mon[33846]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:45.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:44 smithi145 ceph-mon[33846]: from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:45.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:44 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:45.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:44 smithi007 ceph-mon[25669]: pgmap v180: 225 pgs: 225 active+clean; 584 KiB data, 239 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:45.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:44 smithi007 ceph-mon[25669]: from='client.14826 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-17T11:09:45.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:44 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:09:45.382 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-17T11:09:45.383 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:09:45.401 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:45.401 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-17T11:09:45.430 INFO:teuthology.orchestra.run.smithi007.stderr:+ mkdir /mnt/foo 2024-09-17T11:09:45.451 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-17T11:09:45.518 INFO:teuthology.orchestra.run.smithi007.stderr:+ sleep 5 2024-09-17T11:09:47.213 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:46 smithi145 ceph-mon[33846]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:47.213 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:47.213 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:47.213 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:09:47.213 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:46 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:47.256 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:46 smithi007 ceph-mon[25669]: pgmap v181: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:47.257 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:47.257 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:47.257 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-17T11:09:47.257 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:46 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:48.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:47 smithi145 ceph-mon[33846]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:09:48.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:47 smithi007 ceph-mon[25669]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-17T11:09:49.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:48 smithi007 ceph-mon[25669]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:49.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:48 smithi145 ceph-mon[33846]: pgmap v182: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:50.522 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.7:/foobucket /mnt/foo' 2024-09-17T11:09:50.592 INFO:teuthology.orchestra.run.smithi007.stderr:+ mount -t nfs 10.0.31.7:/foobucket /mnt/foo 2024-09-17T11:09:50.782 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:50 smithi007 ceph-mon[25669]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:50.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:50.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:50 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:51.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:50 smithi145 ceph-mon[33846]: pgmap v183: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:51.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:51.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:50 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:51.139 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-17T11:09:51.205 INFO:teuthology.orchestra.run.smithi007.stderr:+ find /mnt/foo -ls 2024-09-17T11:09:51.209 INFO:teuthology.orchestra.run.smithi007.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 17 11:09 /mnt/foo 2024-09-17T11:09:51.209 INFO:teuthology.orchestra.run.smithi007.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 17 11:09 /mnt/foo/myobject 2024-09-17T11:09:51.211 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-17T11:09:51.276 INFO:teuthology.orchestra.run.smithi007.stderr:+ grep thebody /mnt/foo/myobject 2024-09-17T11:09:51.279 INFO:teuthology.orchestra.run.smithi007.stdout:thebody 2024-09-17T11:09:51.281 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-17T11:09:51.347 INFO:teuthology.orchestra.run.smithi007.stderr:+ echo test 2024-09-17T11:09:51.362 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-17T11:09:51.426 INFO:teuthology.orchestra.run.smithi007.stderr:+ sync 2024-09-17T11:09:53.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:52 smithi145 ceph-mon[33846]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:53.033 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:52 smithi007 ceph-mon[25669]: pgmap v184: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-17T11:09:53.478 INFO:teuthology.run_tasks:Running task python... 2024-09-17T11:09:53.489 INFO:tasks.python:Running python on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:53.489 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-09-17T11:09:53.489 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-17T11:09:53.806 INFO:teuthology.orchestra.run.smithi007.stdout:b'test\n' 2024-09-17T11:09:53.857 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-17T11:09:53.869 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:53.869 DEBUG:teuthology.orchestra.run.smithi007:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-17T11:09:53.894 INFO:teuthology.orchestra.run.smithi007.stderr:+ umount /mnt/foo 2024-09-17T11:09:53.920 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:09:53.936 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:53.936 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-17T11:09:54.259 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:55.027 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:54 smithi145 ceph-mon[33846]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.8 KiB/s rd, 597 B/s wr, 8 op/s 2024-09-17T11:09:55.032 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:54 smithi007 ceph-mon[25669]: pgmap v185: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.8 KiB/s rd, 597 B/s wr, 8 op/s 2024-09-17T11:09:56.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: Checking dashboard <-> RGW credentials 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:56.278 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:55 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: Checking dashboard <-> RGW credentials 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:09:56.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:55 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:56.338 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-17T11:09:56.603 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:57.000 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:56 smithi007 ceph-mon[25669]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-17T11:09:57.001 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:56 smithi007 ceph-mon[25669]: from='client.14854 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:57.280 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:56 smithi145 ceph-mon[33846]: pgmap v186: 225 pgs: 225 active+clean; 584 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 7.6 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-17T11:09:57.280 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:56 smithi145 ceph-mon[33846]: from='client.14854 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:57.943 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-17T11:09:57.956 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:09:57.957 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-17T11:09:58.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T11:09:58.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: from='client.14858 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: Remove service ingress.nfs.foo 2024-09-17T11:09:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: Remove service nfs.foo 2024-09-17T11:09:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:58.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:09:58 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: pgmap v187: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.2 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: from='client.14858 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: Remove service ingress.nfs.foo 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: Remove service nfs.foo 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-17T11:09:58.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:09:58 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:09:58.795 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:09:59.237 INFO:teuthology.orchestra.run.smithi007.stdout:167 167 2024-09-17T11:09:59.867 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch status' 2024-09-17T11:10:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:00 smithi145 ceph-mon[33846]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:00 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:00.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:00 smithi145 ceph-mon[33846]: overall HEALTH_OK 2024-09-17T11:10:00.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:00 smithi007 ceph-mon[25669]: pgmap v188: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:00 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-17T11:10:00.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:00 smithi007 ceph-mon[25669]: overall HEALTH_OK 2024-09-17T11:10:00.576 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:02.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:02.275 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:02 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:02.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:02.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:02 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:02.706 INFO:teuthology.orchestra.run.smithi007.stdout:Backend: cephadm 2024-09-17T11:10:02.706 INFO:teuthology.orchestra.run.smithi007.stdout:Available: Yes 2024-09-17T11:10:02.706 INFO:teuthology.orchestra.run.smithi007.stdout:Paused: No 2024-09-17T11:10:03.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:03 smithi145 ceph-mon[33846]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:03.285 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:03 smithi007 ceph-mon[25669]: pgmap v189: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:03.765 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-17T11:10:04.053 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:04.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:04 smithi145 ceph-mon[33846]: from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:04.282 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:04 smithi007 ceph-mon[25669]: from='client.14862 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:05.139 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:05 smithi007 ceph-mon[25669]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:05.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:05 smithi145 ceph-mon[33846]: pgmap v190: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-17T11:10:05.561 INFO:teuthology.orchestra.run.smithi007.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-17T11:10:05.561 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager.smithi007 smithi007 *:9093,9094 running (3m) 10s ago 5m 18.9M - 0.27.0 11f11916f8cd 8d641c2385e5 2024-09-17T11:10:05.561 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter.smithi007 smithi007 running (5m) 10s ago 5m 8493k - 19.3.0-4937-g74984932 6c1fcab85602 e2a16fd8447c 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter.smithi145 smithi145 running (4m) 4s ago 4m 5326k - 19.3.0-4937-g74984932 6c1fcab85602 9d8fcefe68b8 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi007 smithi007 running (5m) 10s ago 5m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 89e79042dd3e 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:crash.smithi145 smithi145 running (4m) 4s ago 4m 6899k - 19.3.0-4937-g74984932 6c1fcab85602 5ebb88fc2ad8 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:grafana.smithi007 smithi007 *:3000 running (3m) 10s ago 4m 72.4M - 10.4.0 c8b91775d855 6535f57400e7 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:haproxy.nfs.foo.smithi007.jnmyom smithi007 *:2049,9049 running (55s) 10s ago 55s 10.3M - 2.3.17-d1c9119 e85424b0d443 3cafa2cb9433 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:haproxy.nfs.foo.smithi145.uzpvja smithi145 *:2049,9049 running (49s) 4s ago 49s 6479k - 2.3.17-d1c9119 e85424b0d443 73d5d41d8e44 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:keepalived.nfs.foo.smithi007.nmcvtf smithi007 running (36s) 10s ago 35s 1593k - 2.2.4 4a3a1ff181d9 0d3dbc3d4c18 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:keepalived.nfs.foo.smithi145.jrxtle smithi145 running (42s) 4s ago 42s 1598k - 2.2.4 4a3a1ff181d9 fd12f10f869e 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi007.jghsql smithi007 *:9283,8765,8443 running (6m) 10s ago 6m 528M - 19.3.0-4937-g74984932 6c1fcab85602 e0321e69a197 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:mgr.smithi145.vgzgry smithi145 *:8443,9283,8765 running (4m) 4s ago 4m 458M - 19.3.0-4937-g74984932 6c1fcab85602 594f37bf30bc 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi007 smithi007 running (6m) 10s ago 6m 50.4M 2048M 19.3.0-4937-g74984932 6c1fcab85602 5d258940370f 2024-09-17T11:10:05.562 INFO:teuthology.orchestra.run.smithi007.stdout:mon.smithi145 smithi145 running (4m) 4s ago 4m 37.2M 2048M 19.3.0-4937-g74984932 6c1fcab85602 40a868218b1f 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:nfs.foo.0.0.smithi007.cwftbi smithi007 *:12049 running (62s) 10s ago 62s 104M - 5.9 6c1fcab85602 c804bc739f06 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi007 smithi007 *:9100 running (5m) 10s ago 5m 10.2M - 1.7.0 72c9c2088986 138b1537593c 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter.smithi145 smithi145 *:9100 running (4m) 4s ago 4m 12.0M - 1.7.0 72c9c2088986 3c7d2a2009b6 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.0 smithi145 running (2m) 4s ago 2m 49.9M 3728M 19.3.0-4937-g74984932 6c1fcab85602 c00dafe842f5 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.1 smithi007 running (2m) 10s ago 2m 57.5M 2961M 19.3.0-4937-g74984932 6c1fcab85602 5eb7a72df223 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.2 smithi145 running (2m) 4s ago 2m 57.7M 3728M 19.3.0-4937-g74984932 6c1fcab85602 3cb64b468d91 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.3 smithi007 running (2m) 10s ago 2m 59.0M 2961M 19.3.0-4937-g74984932 6c1fcab85602 2a0eef468e1a 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.4 smithi145 running (2m) 4s ago 2m 53.7M 3728M 19.3.0-4937-g74984932 6c1fcab85602 5ad6fb3a0e2e 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.5 smithi007 running (2m) 10s ago 2m 46.9M 2961M 19.3.0-4937-g74984932 6c1fcab85602 d2d27d05aa03 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.6 smithi145 running (2m) 4s ago 2m 47.7M 3728M 19.3.0-4937-g74984932 6c1fcab85602 727913f999c9 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:osd.7 smithi007 running (2m) 10s ago 2m 55.9M 2961M 19.3.0-4937-g74984932 6c1fcab85602 1333e7502131 2024-09-17T11:10:05.563 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus.smithi007 smithi007 *:9095 running (19s) 10s ago 4m 32.9M - 2.51.0 1d3b7f56885b a7be39e25500 2024-09-17T11:10:05.564 INFO:teuthology.orchestra.run.smithi007.stdout:rgw.foorgw.smithi007.ghgkpy smithi007 *:8800 running (65s) 10s ago 65s 77.0M - 19.3.0-4937-g74984932 6c1fcab85602 ee097f2f06eb 2024-09-17T11:10:05.564 INFO:teuthology.orchestra.run.smithi007.stdout:rgw.foorgw.smithi145.byquig smithi145 *:8800 running (68s) 4s ago 67s 74.7M - 19.3.0-4937-g74984932 6c1fcab85602 97eff1e3ca8e 2024-09-17T11:10:07.061 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 85 B/s wr, 5 op/s 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:10:07.283 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.284 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:07 smithi007 ceph-mon[25669]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:10:07.428 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:07.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: pgmap v191: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 4.7 KiB/s rd, 85 B/s wr, 5 op/s 2024-09-17T11:10:07.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='client.14866 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:07.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-17T11:10:07.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-17T11:10:07.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' 2024-09-17T11:10:07.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:07 smithi145 ceph-mon[33846]: from='mgr.14227 172.21.15.7:0/413090473' entity='mgr.smithi007.jghsql' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-17T11:10:08.058 INFO:teuthology.orchestra.run.smithi007.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:alertmanager ?:9093,9094 1/1 1s ago 5m count:1 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:ceph-exporter 2/2 7s ago 6m * 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:crash 2/2 7s ago 6m * 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:grafana ?:3000 1/1 1s ago 5m count:1 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:ingress.nfs.foo 10.0.31.7:2049,9049 4/4 77s count:2 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:mgr 2/2 7s ago 6m count:2 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:mon 2/2 7s ago 5m smithi007:172.21.15.7=smithi007;smithi145:172.21.15.145=smithi145;count:2 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:nfs.foo ?:12049 1/1 77s count:1 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:node-exporter ?:9100 2/2 7s ago 5m * 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:osd.all-available-devices 8 7s ago 4m * 2024-09-17T11:10:08.059 INFO:teuthology.orchestra.run.smithi007.stdout:prometheus ?:9095 1/1 1s ago 5m count:1 2024-09-17T11:10:08.060 INFO:teuthology.orchestra.run.smithi007.stdout:rgw.foorgw ?:8800 2/2 7s ago 67s count:2 2024-09-17T11:10:08.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:08 smithi145 ceph-mon[33846]: Removing orphan daemon nfs.foo.0.0.smithi007.cwftbi... 2024-09-17T11:10:08.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:08 smithi145 ceph-mon[33846]: Removing daemon nfs.foo.0.0.smithi007.cwftbi from smithi007 -- ports [12049] 2024-09-17T11:10:08.532 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:08 smithi007 ceph-mon[25669]: Removing orphan daemon nfs.foo.0.0.smithi007.cwftbi... 2024-09-17T11:10:08.533 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:08 smithi007 ceph-mon[25669]: Removing daemon nfs.foo.0.0.smithi007.cwftbi from smithi007 -- ports [12049] 2024-09-17T11:10:08.843 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-17T11:10:09.112 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:09.341 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:09 smithi007 ceph-mon[25669]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-09-17T11:10:09.341 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:09 smithi007 ceph-mon[25669]: from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:09.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:09 smithi145 ceph-mon[33846]: pgmap v192: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 2.4 KiB/s rd, 0 B/s wr, 3 op/s 2024-09-17T11:10:09.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:09 smithi145 ceph-mon[33846]: from='client.14870 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:09.747 INFO:teuthology.orchestra.run.smithi007.stdout:HOST ADDR LABELS STATUS 2024-09-17T11:10:09.747 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 172.21.15.7 2024-09-17T11:10:09.747 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 172.21.15.145 2024-09-17T11:10:09.747 INFO:teuthology.orchestra.run.smithi007.stdout:2 hosts in cluster 2024-09-17T11:10:10.445 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-17T11:10:10.714 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:11.104 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:11 smithi007 ceph-mon[25669]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T11:10:11.104 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:11 smithi007 ceph-mon[25669]: from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300GE480DGN 447G No 76s ago Has a FileSystem, LVM detected 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme1n1 ssd Linux_22a0bbda37f853726811 89.4G No 76s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme2n1 ssd Linux_1e365fc8974e88ec6c2a 89.4G No 76s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme3n1 ssd Linux_15a98e1b4775f43cd59e 89.4G No 76s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi007 /dev/nvme4n1 ssd Linux_a5b2d160a20a21b6b1c0 89.4G No 76s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.403 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620500N9400BGN 372G No 80s ago Has a FileSystem, LVM detected 2024-09-17T11:10:11.404 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme1n1 ssd Linux_e712ef1fd6f8ce8916be 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.404 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme2n1 ssd Linux_55ed5629391979a7ccc9 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.404 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme3n1 ssd Linux_114bb37e137e9e141976 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.404 INFO:teuthology.orchestra.run.smithi007.stdout:smithi145 /dev/nvme4n1 ssd Linux_168043ff983458bfd827 89.4G No 80s ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-17T11:10:11.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:11 smithi145 ceph-mon[33846]: pgmap v193: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 341 B/s rd, 0 B/s wr, 0 op/s 2024-09-17T11:10:11.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:11 smithi145 ceph-mon[33846]: from='client.14874 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:12.103 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-17T11:10:12.373 INFO:teuthology.orchestra.run.smithi007.stderr:Inferring config /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/mon.smithi007/config 2024-09-17T11:10:13.056 INFO:teuthology.orchestra.run.smithi007.stdout:osd.all-available-devices 8 12s ago 4m * 2024-09-17T11:10:13.524 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:13 smithi007 ceph-mon[25669]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:10:13.524 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:13 smithi007 ceph-mon[25669]: from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:13.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:13 smithi145 ceph-mon[33846]: pgmap v194: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-17T11:10:13.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:13 smithi145 ceph-mon[33846]: from='client.14878 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:13.694 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-17T11:10:13.704 INFO:tasks.vip:Removing 10.0.15.7 (and any VIPs) on smithi007.front.sepia.ceph.com iface ens1f0... 2024-09-17T11:10:13.705 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr del 10.0.15.7/16 dev ens1f0 2024-09-17T11:10:13.733 DEBUG:teuthology.orchestra.run.smithi007:> sudo ip addr del 10.0.31.7/16 dev ens1f0 2024-09-17T11:10:13.800 INFO:tasks.vip:Removing 10.0.15.145 (and any VIPs) on smithi145.front.sepia.ceph.com iface enp3s0f1... 2024-09-17T11:10:13.800 DEBUG:teuthology.orchestra.run.smithi145:> sudo ip addr del 10.0.15.145/16 dev enp3s0f1 2024-09-17T11:10:13.834 DEBUG:teuthology.orchestra.run.smithi145:> sudo ip addr del 10.0.31.7/16 dev enp3s0f1 2024-09-17T11:10:13.903 INFO:teuthology.orchestra.run.smithi145.stderr:Error: ipv4: Address not found. 2024-09-17T11:10:13.904 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-17T11:10:13.904 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-17T11:10:13.915 INFO:tasks.cephadm:Teardown begin 2024-09-17T11:10:13.916 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:10:13.943 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:10:13.973 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-17T11:10:13.973 DEBUG:teuthology.orchestra.run.smithi007:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:10:13.998 DEBUG:teuthology.orchestra.run.smithi145:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-17T11:10:14.029 INFO:tasks.cephadm:Stopping all daemons... 2024-09-17T11:10:14.030 INFO:tasks.cephadm.mon.smithi007:Stopping mon.smithi007... 2024-09-17T11:10:14.030 DEBUG:teuthology.orchestra.run.smithi007:> sudo systemctl stop ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007 2024-09-17T11:10:14.061 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 ceph-mon[25669]: from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:14.277 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:14 smithi145 ceph-mon[33846]: from='client.14882 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-17T11:10:14.337 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 systemd[1]: Stopping Ceph mon.smithi007 for 3df3defa-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:10:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007[25665]: 2024-09-17T11:10:14.335+0000 7fa67c0cd640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi007 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T11:10:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007[25665]: 2024-09-17T11:10:14.335+0000 7fa67c0cd640 -1 mon.smithi007@0(leader) e2 *** Got Signal Terminated *** 2024-09-17T11:10:14.783 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 podman[85583]: 2024-09-17 11:10:14.581116501 +0000 UTC m=+0.338600566 container died 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, GIT_BRANCH=HEAD, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, RELEASE=main-7498493, org.label-schema.license=GPLv2) 2024-09-17T11:10:15.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 podman[85583]: 2024-09-17 11:10:14.935918865 +0000 UTC m=+0.693402935 container cleanup 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, RELEASE=main-7498493, org.label-schema.license=GPLv2, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-17T11:10:15.140 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:14 smithi007 bash[85583]: ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007 2024-09-17T11:10:15.410 INFO:journalctl@ceph.mon.smithi007.smithi007.stdout:Sep 17 11:10:15 smithi007 podman[85594]: 2024-09-17 11:10:15.262620611 +0000 UTC m=+0.676597486 container remove 5d258940370fb4fc2c3030c11a287dacc76357bc91d3b71e6f272d40eeccfb2a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:7498493279982dfe87f00616198a5967475f6169, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi007, ceph=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , RELEASE=main-7498493, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-09-17T11:10:15.434 DEBUG:teuthology.orchestra.run.smithi007:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi007.service' 2024-09-17T11:10:15.528 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T11:10:15.529 INFO:tasks.cephadm.mon.smithi007:Stopped mon.smithi007 2024-09-17T11:10:15.529 INFO:tasks.cephadm.mon.smithi145:Stopping mon.smithi145... 2024-09-17T11:10:15.529 DEBUG:teuthology.orchestra.run.smithi145:> sudo systemctl stop ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi145 2024-09-17T11:10:15.777 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:15 smithi145 systemd[1]: Stopping Ceph mon.smithi145 for 3df3defa-74e4-11ef-bceb-c7b262605968... 2024-09-17T11:10:16.206 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:15 smithi145 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145[33842]: 2024-09-17T11:10:15.847+0000 7ff44d6e9640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.smithi145 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-09-17T11:10:16.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:15 smithi145 ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145[33842]: 2024-09-17T11:10:15.847+0000 7ff44d6e9640 -1 mon.smithi145@1(peon) e2 *** Got Signal Terminated *** 2024-09-17T11:10:16.207 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:15 smithi145 podman[60221]: 2024-09-17 11:10:15.91943401 +0000 UTC m=+0.204932983 container died 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_CLEAN=True, RELEASE=main-7498493, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T11:10:16.527 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:16 smithi145 podman[60221]: 2024-09-17 11:10:16.439003703 +0000 UTC m=+0.724502631 container cleanup 40a868218b1f912582a39de7791da045690172c7287e3b5b182f33d64e052ece (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:d1ee255599fffe6c832aeedeed0b06c298863896564017e014e180f38b9ae1bb, name=ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, RELEASE=main-7498493, io.buildah.version=1.37.2, ceph=True, GIT_COMMIT=009c5a8162e3d9e92e49bb850b92bd3cd406d965, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-17T11:10:16.528 INFO:journalctl@ceph.mon.smithi145.smithi145.stdout:Sep 17 11:10:16 smithi145 bash[60221]: ceph-3df3defa-74e4-11ef-bceb-c7b262605968-mon-smithi145 2024-09-17T11:10:16.818 DEBUG:teuthology.orchestra.run.smithi145:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3df3defa-74e4-11ef-bceb-c7b262605968@mon.smithi145.service' 2024-09-17T11:10:16.858 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-17T11:10:16.859 INFO:tasks.cephadm.mon.smithi145:Stopped mon.smithi145 2024-09-17T11:10:16.859 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T11:10:18.580 INFO:teuthology.orchestra.run.smithi007.stdout:Deleting cluster with fsid: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:11:15.885 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-17T11:11:16.089 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:12:08.779 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:12:08.814 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-17T11:12:08.842 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-17T11:12:08.845 DEBUG:teuthology.misc:Transferring archived files from smithi007:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi007/crash 2024-09-17T11:12:08.846 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T11:12:08.926 INFO:teuthology.orchestra.run.smithi007.stderr:tar: /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T11:12:08.926 INFO:teuthology.orchestra.run.smithi007.stderr:tar: Error is not recoverable: exiting now 2024-09-17T11:12:08.928 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi145/crash 2024-09-17T11:12:08.929 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash -- . 2024-09-17T11:12:08.963 INFO:teuthology.orchestra.run.smithi145.stderr:tar: /var/lib/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-17T11:12:08.963 INFO:teuthology.orchestra.run.smithi145.stderr:tar: Error is not recoverable: exiting now 2024-09-17T11:12:08.964 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-17T11:12:08.965 DEBUG:teuthology.orchestra.run.smithi007:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-17T11:12:08.998 INFO:tasks.cephadm:Compressing logs... 2024-09-17T11:12:08.999 DEBUG:teuthology.orchestra.run.smithi007:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T11:12:09.042 DEBUG:teuthology.orchestra.run.smithi145:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-17T11:12:09.066 INFO:teuthology.orchestra.run.smithi145.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-17T11:12:09.066 INFO:teuthology.orchestra.run.smithi145.stderr:: No such file or directory 2024-09-17T11:12:09.066 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T11:12:09.066 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi145.vgzgry.log 2024-09-17T11:12:09.069 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log: /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-17T11:12:09.069 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi145.vgzgry.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T11:12:09.069 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose --/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log: /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi145.log 2024-09-17T11:12:09.069 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T11:12:09.069 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi145.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi145.log 2024-09-17T11:12:09.070 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-17T11:12:09.070 INFO:teuthology.orchestra.run.smithi145.stderr: 82.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T11:12:09.070 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi145.log: 30.5% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi145.log.gz 2024-09-17T11:12:09.073 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr: 91.2% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi145.byquig.log 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi145.byquig.log: 64.0% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi145.byquig.log.gz 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log: 91.2% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi145.vgzgry.log.gz 2024-09-17T11:12:09.076 INFO:teuthology.orchestra.run.smithi145.stderr: 86.0% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T11:12:09.077 INFO:teuthology.orchestra.run.smithi007.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi007.log 2024-09-17T11:12:09.077 INFO:teuthology.orchestra.run.smithi007.stderr:: No such file or directory 2024-09-17T11:12:09.077 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-17T11:12:09.077 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi007.log: /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr: 84.1% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log: 91.0% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi007.jghsql.log 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log: 86.5% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-17T11:12:09.078 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi007.ghgkpy.log 2024-09-17T11:12:09.079 INFO:teuthology.orchestra.run.smithi145.stderr:/var/log/ceph/cephadm.log: 92.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T11:12:09.079 INFO:teuthology.orchestra.run.smithi145.stderr: 90.9% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T11:12:09.082 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi007.jghsql.log: 90.7% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-17T11:12:09.088 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi007.ghgkpy.log 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi007.ghgkpy.log: gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi007.log 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr: 77.9% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi007.ghgkpy.log.gz 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi007.log: /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi007.ghgkpy.log: 71.8% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.rgw.foorgw.smithi007.ghgkpy.log.gz 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr: 93.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-client.ceph-exporter.smithi007.log.gz 2024-09-17T11:12:09.089 INFO:teuthology.orchestra.run.smithi007.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-17T11:12:09.120 INFO:teuthology.orchestra.run.smithi007.stderr:/var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log: /var/log/ceph/cephadm.log: 91.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-17T11:12:09.144 INFO:teuthology.orchestra.run.smithi145.stderr: 92.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi145.log.gz 2024-09-17T11:12:09.243 INFO:teuthology.orchestra.run.smithi007.stderr: 89.0% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mgr.smithi007.jghsql.log.gz 2024-09-17T11:12:09.312 INFO:teuthology.orchestra.run.smithi145.stderr: 93.7% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-17T11:12:09.325 INFO:teuthology.orchestra.run.smithi145.stderr: 93.5% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-17T11:12:09.345 INFO:teuthology.orchestra.run.smithi007.stderr: 93.7% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-17T11:12:09.358 INFO:teuthology.orchestra.run.smithi145.stderr: 93.4% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.6.log.gz 2024-09-17T11:12:09.377 INFO:teuthology.orchestra.run.smithi007.stderr: 93.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.7.log.gz 2024-09-17T11:12:09.380 INFO:teuthology.orchestra.run.smithi007.stderr: 91.2% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-mon.smithi007.log.gz 2024-09-17T11:12:09.383 INFO:teuthology.orchestra.run.smithi007.stderr: 93.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-17T11:12:09.395 INFO:teuthology.orchestra.run.smithi145.stderr: 93.6% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-17T11:12:09.397 INFO:teuthology.orchestra.run.smithi145.stderr: 2024-09-17T11:12:09.398 INFO:teuthology.orchestra.run.smithi145.stderr:real 0m0.341s 2024-09-17T11:12:09.398 INFO:teuthology.orchestra.run.smithi145.stderr:user 0m1.183s 2024-09-17T11:12:09.398 INFO:teuthology.orchestra.run.smithi145.stderr:sys 0m0.060s 2024-09-17T11:12:09.490 INFO:teuthology.orchestra.run.smithi007.stderr: 93.7% -- replaced with /var/log/ceph/3df3defa-74e4-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-17T11:12:09.492 INFO:teuthology.orchestra.run.smithi007.stderr: 2024-09-17T11:12:09.492 INFO:teuthology.orchestra.run.smithi007.stderr:real 0m0.436s 2024-09-17T11:12:09.492 INFO:teuthology.orchestra.run.smithi007.stderr:user 0m1.782s 2024-09-17T11:12:09.492 INFO:teuthology.orchestra.run.smithi007.stderr:sys 0m0.082s 2024-09-17T11:12:09.492 INFO:tasks.cephadm:Archiving logs... 2024-09-17T11:12:09.492 DEBUG:teuthology.misc:Transferring archived files from smithi007:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi007/log 2024-09-17T11:12:09.493 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T11:12:09.777 DEBUG:teuthology.misc:Transferring archived files from smithi145:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi145/log 2024-09-17T11:12:09.778 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-17T11:12:09.983 INFO:tasks.cephadm:Removing cluster... 2024-09-17T11:12:09.984 DEBUG:teuthology.orchestra.run.smithi007:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 --force 2024-09-17T11:12:10.181 INFO:teuthology.orchestra.run.smithi007.stdout:Deleting cluster with fsid: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:12:10.315 DEBUG:teuthology.orchestra.run.smithi145:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3df3defa-74e4-11ef-bceb-c7b262605968 --force 2024-09-17T11:12:10.509 INFO:teuthology.orchestra.run.smithi145.stdout:Deleting cluster with fsid: 3df3defa-74e4-11ef-bceb-c7b262605968 2024-09-17T11:12:10.628 INFO:tasks.cephadm:Removing cephadm ... 2024-09-17T11:12:10.628 DEBUG:teuthology.orchestra.run.smithi007:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T11:12:10.645 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-17T11:12:10.660 INFO:tasks.cephadm:Teardown complete 2024-09-17T11:12:10.660 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-17T11:12:10.673 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_1... 2024-09-17T11:12:10.673 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_1 2024-09-17T11:12:10.823 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T11:12:10.825 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_2... 2024-09-17T11:12:10.825 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_2 2024-09-17T11:12:10.975 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T11:12:10.977 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_3... 2024-09-17T11:12:10.977 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_3 2024-09-17T11:12:11.125 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T11:12:11.128 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi007:/dev/vg_nvme/lv_4... 2024-09-17T11:12:11.128 DEBUG:teuthology.orchestra.run.smithi007:> sudo nvme disconnect -n lv_4 2024-09-17T11:12:11.272 INFO:teuthology.orchestra.run.smithi007.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T11:12:11.273 DEBUG:teuthology.orchestra.run.smithi007:> set -ex 2024-09-17T11:12:11.273 DEBUG:teuthology.orchestra.run.smithi007:> sudo dd of=/scratch_devs 2024-09-17T11:12:11.301 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi145:/dev/vg_nvme/lv_1... 2024-09-17T11:12:11.301 DEBUG:teuthology.orchestra.run.smithi145:> sudo nvme disconnect -n lv_1 2024-09-17T11:12:11.458 INFO:teuthology.orchestra.run.smithi145.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-17T11:12:11.460 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi145:/dev/vg_nvme/lv_2... 2024-09-17T11:12:11.460 DEBUG:teuthology.orchestra.run.smithi145:> sudo nvme disconnect -n lv_2 2024-09-17T11:12:11.606 INFO:teuthology.orchestra.run.smithi145.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-17T11:12:11.608 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi145:/dev/vg_nvme/lv_3... 2024-09-17T11:12:11.608 DEBUG:teuthology.orchestra.run.smithi145:> sudo nvme disconnect -n lv_3 2024-09-17T11:12:11.756 INFO:teuthology.orchestra.run.smithi145.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-17T11:12:11.757 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi145:/dev/vg_nvme/lv_4... 2024-09-17T11:12:11.758 DEBUG:teuthology.orchestra.run.smithi145:> sudo nvme disconnect -n lv_4 2024-09-17T11:12:11.896 INFO:teuthology.orchestra.run.smithi145.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-17T11:12:11.898 DEBUG:teuthology.orchestra.run.smithi145:> set -ex 2024-09-17T11:12:11.898 DEBUG:teuthology.orchestra.run.smithi145:> sudo dd of=/scratch_devs 2024-09-17T11:12:11.925 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-17T11:12:11.936 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-17T11:12:11.936 DEBUG:teuthology.orchestra.run.smithi007:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:12:11.939 DEBUG:teuthology.orchestra.run.smithi145:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-17T11:12:11.955 INFO:teuthology.orchestra.run.smithi007.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:=============================================================================== 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:^* hv01.front.sepia.ceph.com 3 6 377 44 -592us[ -585us] +/- 51ms 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 43 +837us[ +837us] +/- 55ms 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 44 -74us[ -74us] +/- 60ms 2024-09-17T11:12:11.960 INFO:teuthology.orchestra.run.smithi007.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:12:11.981 INFO:teuthology.orchestra.run.smithi145.stderr:bash: line 1: ntpq: command not found 2024-09-17T11:12:11.986 INFO:teuthology.orchestra.run.smithi145.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-17T11:12:11.986 INFO:teuthology.orchestra.run.smithi145.stdout:=============================================================================== 2024-09-17T11:12:11.987 INFO:teuthology.orchestra.run.smithi145.stdout:^* hv01.front.sepia.ceph.com 3 6 377 42 -617us[ -573us] +/- 51ms 2024-09-17T11:12:11.987 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 40 +803us[ +803us] +/- 55ms 2024-09-17T11:12:11.987 INFO:teuthology.orchestra.run.smithi145.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 42 -96us[ -96us] +/- 60ms 2024-09-17T11:12:11.987 INFO:teuthology.orchestra.run.smithi145.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-17T11:12:11.987 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-17T11:12:11.999 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-17T11:12:11.999 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-17T11:12:12.011 DEBUG:teuthology.orchestra.run.smithi007:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-17T11:12:12.091 DEBUG:teuthology.orchestra.run.smithi145:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-09-17T11:12:12.158 DEBUG:teuthology.orchestra.run.smithi007:> 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 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T11:12:12.189 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:12:12.190 DEBUG:teuthology.orchestra.run.smithi145:> 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 -e scontext=system_u:system_r:getty_t:s0 2024-09-17T11:12:12.218 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:12:12.218 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-17T11:12:12.229 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-17T11:12:12.239 INFO:teuthology.task.internal:Duration was 859.667520 seconds 2024-09-17T11:12:12.240 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-17T11:12:12.250 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-17T11:12:12.251 DEBUG:teuthology.orchestra.run.smithi007:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T11:12:12.253 DEBUG:teuthology.orchestra.run.smithi145:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-17T11:12:12.295 INFO:teuthology.orchestra.run.smithi007.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T11:12:12.298 INFO:teuthology.orchestra.run.smithi145.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-17T11:12:12.566 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-17T11:12:12.566 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi007.front.sepia.ceph.com 2024-09-17T11:12:12.567 DEBUG:teuthology.orchestra.run.smithi007:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-17T11:12:12.588 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi145.front.sepia.ceph.com 2024-09-17T11:12:12.588 DEBUG:teuthology.orchestra.run.smithi145:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-17T11:12:12.634 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-17T11:12:12.634 DEBUG:teuthology.orchestra.run.smithi007:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T11:12:12.637 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-17T11:12:12.700 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-17T11:12:12.701 DEBUG:teuthology.orchestra.run.smithi007:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T11:12:12.704 DEBUG:teuthology.orchestra.run.smithi145:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-17T11:12:12.982 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-17T11:12:12.994 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-17T11:12:12.995 DEBUG:teuthology.orchestra.run.smithi007:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T11:12:13.020 DEBUG:teuthology.orchestra.run.smithi145:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-17T11:12:13.045 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-17T11:12:13.056 DEBUG:teuthology.orchestra.run.smithi007:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:12:13.062 DEBUG:teuthology.orchestra.run.smithi145:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:12:13.084 INFO:teuthology.orchestra.run.smithi007.stdout:kernel.core_pattern = core 2024-09-17T11:12:13.107 INFO:teuthology.orchestra.run.smithi145.stdout:kernel.core_pattern = core 2024-09-17T11:12:13.125 DEBUG:teuthology.orchestra.run.smithi007:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:12:13.160 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:12:13.161 DEBUG:teuthology.orchestra.run.smithi145:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-17T11:12:13.180 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-17T11:12:13.180 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-17T11:12:13.193 INFO:teuthology.task.internal:Transferring archived files... 2024-09-17T11:12:13.194 DEBUG:teuthology.misc:Transferring archived files from smithi007:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi007 2024-09-17T11:12:13.194 DEBUG:teuthology.orchestra.run.smithi007:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T11:12:13.241 DEBUG:teuthology.misc:Transferring archived files from smithi145:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-09-16_20:08:15-orch-main-distro-default-smithi/7907720/remote/smithi145 2024-09-17T11:12:13.241 DEBUG:teuthology.orchestra.run.smithi145:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-17T11:12:13.276 INFO:teuthology.task.internal:Removing archive directory... 2024-09-17T11:12:13.276 DEBUG:teuthology.orchestra.run.smithi007:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T11:12:13.279 DEBUG:teuthology.orchestra.run.smithi145:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-17T11:12:13.326 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-17T11:12:13.344 INFO:teuthology.task.internal:Not uploading archives. 2024-09-17T11:12:13.344 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-17T11:12:13.361 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-17T11:12:13.362 DEBUG:teuthology.orchestra.run.smithi007:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T11:12:13.364 DEBUG:teuthology.orchestra.run.smithi145:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-17T11:12:13.377 INFO:teuthology.orchestra.run.smithi007.stdout: 265325 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 11:12 /home/ubuntu/cephtest 2024-09-17T11:12:13.381 INFO:teuthology.orchestra.run.smithi145.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 17 11:12 /home/ubuntu/cephtest 2024-09-17T11:12:13.382 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-17T11:12:13.394 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-17T11:12:13.420 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 859.6675198078156 owner: scheduled_teuthology@teuthology success: true 2024-09-17T11:12:13.420 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-17T11:12:13.509 INFO:teuthology.run:pass